UNPKG

simple-lazy-debounce

Version:
9 lines (7 loc) 279 B
interface DebounceOptions { defaultDelay?: number; maxDelay?: number; latencyIncrement?: number; } declare const SimpleLazyDebounce: (callback: (..._args: unknown[]) => void, options?: DebounceOptions) => (...args: unknown[]) => void; export { SimpleLazyDebounce };