PromoCursed/node_modules/antd/lib/_util/throttleByAnimationFrame.d.ts
2024-08-20 23:25:37 +04:00

6 lines
176 B
TypeScript

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