debounce.d.ts 123 B

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