TenantAtlas/apps/platform/.pnpm-store/v10/files/1f/dff7fc22b89ebfe6f32621b08ce2fb20b432273333c23eb7a02460aedae20a419cee6adbc4fe8331cd63c4623d48450005f8e6b1719c31f26bfdf4e46e4ba1
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

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