timingTools.d.ts 273 B

12345678910
  1. /**
  2. * Class used to provide helper for timing
  3. */
  4. export declare class TimingTools {
  5. /**
  6. * Polyfill for setImmediate
  7. * @param action defines the action to execute after the current execution block
  8. */
  9. static SetImmediate(action: () => void): void;
  10. }