Rocky_Mountain_Vending/.pnpm-store/v10/files/53/cf94e0458323c08fc26af62ad8812475df0abf6d304cec71442a04c228dd58c9e6400d6bf891f573ffb7873f4b18cc7c7cebed94f811e0c5a5e9b849b92962
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

6 lines
182 B
Text

import type { Disposer } from '../types.js';
declare const Scheduler: {
next: (id: string) => void;
schedule: (id: string) => Promise<Disposer>;
};
export default Scheduler;