Files
copilot-toolbox-template-121/node_modules/antd/es/_util/throttleByAnimationFrame.d.ts
2026-01-16 02:20:32 +00:00

6 lines
176 B
TypeScript

declare function throttleByAnimationFrame<T extends any[]>(fn: (...args: T) => void): {
(...args: T): void;
cancel(): void;
};
export default throttleByAnimationFrame;