throttleByRaf.d.ts 199 B

1234567
  1. //#region ../../packages/utils/throttleByRaf.d.ts
  2. declare function throttleByRaf(cb: (...args: any[]) => void): {
  3. (...args: any[]): void;
  4. cancel(): void;
  5. };
  6. //#endregion
  7. export { throttleByRaf };