unis_crm/frontend1/node_modules/antd/lib/_util/throttleByAnimationFrame.d.ts

6 lines
176 B
TypeScript
Raw Normal View History

2026-03-26 09:29:55 +00:00
declare function throttleByAnimationFrame<T extends any[]>(fn: (...args: T) => void): {
(...args: T): void;
cancel(): void;
};
export default throttleByAnimationFrame;