debounce.d.ts 154 B

1234567
  1. /**
  2. * Debounces a callback.
  3. * @param cb
  4. * @param ms
  5. * @param id
  6. */
  7. export declare function debounce(cb: (() => void), ms: number, id: string): void;