AnimationFrame.d.ts 262 Bytes
Newer Older
Patiphan Marak's avatar
Patiphan Marak committed
1 2 3 4 5 6
export declare class RequestAnimationFrameDefinition {
    cancelAnimationFrame: (handle: number) => void;
    requestAnimationFrame: (cb: () => void) => number;
    constructor(root: any);
}
export declare const AnimationFrame: RequestAnimationFrameDefinition;