13 lines
544 B
Plaintext
13 lines
544 B
Plaintext
import { Subscription } from '../Subscription';
|
|
interface AnimationFrameProvider {
|
|
schedule(callback: FrameRequestCallback): Subscription;
|
|
requestAnimationFrame: typeof requestAnimationFrame;
|
|
cancelAnimationFrame: typeof cancelAnimationFrame;
|
|
delegate: {
|
|
requestAnimationFrame: typeof requestAnimationFrame;
|
|
cancelAnimationFrame: typeof cancelAnimationFrame;
|
|
} | undefined;
|
|
}
|
|
export declare const animationFrameProvider: AnimationFrameProvider;
|
|
export {};
|
|
//# sourceMappingURL=animationFrameProvider.d.ts.map |