1 | import type { TExtend } from 'tsfn';
|
2 | export declare type TSafeRequestAnimationFrame = (cb: () => void) => () => void;
|
3 | export declare const mapSafeRequestAnimationFrameFactory: (requestAnimationFrameFn: Function, cancelAnimationFrameFn: Function) => <P extends {}, K extends string>(propName: K) => (props: P) => TExtend<P, { [k in K]: TSafeRequestAnimationFrame; }>;
|
4 | export declare const mapSafeRequestAnimationFrame: <P extends {}, K extends string>(propName: K) => (props: P) => TExtend<P, { [k in K]: TSafeRequestAnimationFrame; }>;
|