UNPKG

@toreda/time

Version:

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

10 lines (9 loc) 156 B
/** * @category Timers */ export interface Timer { start: () => boolean; stop: () => boolean; onUpdate?: () => void; reset: () => void; }