2025-08-04 18:41:00 -04:00

2 lines
123 B
TypeScript

export declare function debounce<TParams>(fn: (...params: TParams[]) => void, time: number): (...args: TParams[]) => void;