clock.d.ts 306 B

123456789
  1. import type { Timer, TimerType } from './timer';
  2. export type TimerMap = Map<symbol, Timer>;
  3. export declare class Clock {
  4. readonly store: TimerMap;
  5. get: (timer: TimerType) => Timer;
  6. remove: (timer: TimerType) => void;
  7. has: (timer: TimerType) => boolean;
  8. }
  9. //# sourceMappingURL=clock.d.ts.map