debounce.d.ts 132 B

1234
  1. /**
  2. * Debounce of Underscore.js
  3. */
  4. export declare const debounce: (func: Function, wait: number, immediate: boolean) => Function;