throttleByRaf.d.ts 122 B

1234
  1. export declare function throttleByRaf(cb: (...args: any[]) => void): {
  2. (...args: any[]): void;
  3. cancel(): void;
  4. };