1
0
Fichiers
2026-04-08 17:52:38 +08:00

7 lignes
199 B
TypeScript

//#region ../../packages/utils/throttleByRaf.d.ts
declare function throttleByRaf(cb: (...args: any[]) => void): {
(...args: any[]): void;
cancel(): void;
};
//#endregion
export { throttleByRaf };