UNPKG

544 BTypeScriptView Raw
1import { Subscription } from '../Subscription';
2interface AnimationFrameProvider {
3 schedule(callback: FrameRequestCallback): Subscription;
4 requestAnimationFrame: typeof requestAnimationFrame;
5 cancelAnimationFrame: typeof cancelAnimationFrame;
6 delegate: {
7 requestAnimationFrame: typeof requestAnimationFrame;
8 cancelAnimationFrame: typeof cancelAnimationFrame;
9 } | undefined;
10}
11export declare const animationFrameProvider: AnimationFrameProvider;
12export {};
13//# sourceMappingURL=animationFrameProvider.d.ts.map
\No newline at end of file