UNPKG

@toreda/time

Version:

Simple, small footprint library for common time operations and converting between units of time.

7 lines (6 loc) 185 B
/** * Globally unique event ID for each major timer event. * * @category Timers */ export type TimerEventId = 'start' | 'stop' | 'pause' | 'unpause' | 'restart' | 'reset' | 'done';