UNPKG

react-ui89

Version:

A collection of React components that mimic a common style of user interfaces from the late 80s and early 90s.

11 lines (10 loc) 299 B
export declare function throttledTimeout(): { call(delay: number, f: () => void): void; /** * If there is a call that has been scheduled, remove it from the queue. */ abort(): void; }; export declare function spacedTimeout(): { call(delay: number, f: () => void): void; };