frontend/.pnpm-store/v3/files/1f/dff7fc22b89ebfe6f32621b08ce2fb20b432273333c23eb7a02460aedae20a419cee6adbc4fe8331cd63c4623d48450005f8e6b1719c31f26bfdf4e46e4ba1

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