UNPKG

shared-timers

Version:

Unthrottleable timers that work across tabs.

8 lines (4 loc) 197 B
export declare function clearTimer(id: number): void; export declare function runTimer(func: TimerFunction, delay: number): number; declare type TimerFunction = () => unknown; export { }