Rocky_Mountain_Vending/.pnpm-store/v10/files/7c/256921fca569ed6893270091e1b722250e6fce7ddc16de37377799664cb7d583ee02f5d3df3b51e2b4d0725c3d0b0150d4396ee3842502143a682042e23286
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

9 lines
299 B
Text

import type { DraftModeProvider } from '../async-storage/draft-mode-provider';
export declare function draftMode(): Promise<DraftMode>;
declare class DraftMode {
constructor(provider: null | DraftModeProvider);
get isEnabled(): boolean;
enable(): void;
disable(): void;
}
export {};