Rocky_Mountain_Vending/.pnpm-store/v10/files/1f/dff7fc22b89ebfe6f32621b08ce2fb20b432273333c23eb7a02460aedae20a419cee6adbc4fe8331cd63c4623d48450005f8e6b1719c31f26bfdf4e46e4ba1
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

13 lines
No EOL
544 B
Text

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