timer.d.ts 162 B

1234567
  1. /**
  2. * A Util Class only used when debugging for printing time to console
  3. */
  4. export declare class Timer {
  5. private timestamp;
  6. print(msg: string): void;
  7. }