Rocky_Mountain_Vending/.pnpm-store/v10/files/b4/8dc569eba0829a27d6019d4c32fb287d793025b712685529b41dd0bd2e5c7c1778f0b3a86994f6d87f851980f78b18e5c2063e9ebc5ecb6a2bc3e4bd73e238
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

5 lines
No EOL
454 B
Text

import { Subscription } from '../Subscription';
import { SchedulerLike } from '../types';
export declare function executeSchedule(parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay: number, repeat: true): void;
export declare function executeSchedule(parentSubscription: Subscription, scheduler: SchedulerLike, work: () => void, delay?: number, repeat?: false): Subscription;
//# sourceMappingURL=executeSchedule.d.ts.map