throttleByAnimationFrame.d.ts 262 Bytes Raw Blame History Permalink 1 2 3 4 5 export declare function throttleByAnimationFrame(fn: (...args: any[]) => void): (...args: any[]) => void; export declare function throttleByAnimationFrameDecorator(): (target: any, key: string, descriptor: any) => { configurable: boolean; get(): any; };