Rocky_Mountain_Vending/.pnpm-store/v10/files/11/3b92a011156a95d5de299db6b82884e48cf469ec2e7deb9b11266fa0f5916f0cd76859002dc5dce50ed370cab16af9f00eb294ce8f597aef40e3f0e88a727b
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

24 lines
630 B
Text

export type OutputState = {
bootstrap: true;
appUrl: string | null;
bindAddr: string | null;
logging: boolean;
} | ({
bootstrap: false;
appUrl: string | null;
bindAddr: string | null;
logging: boolean;
} & ({
loading: true;
trigger: string | undefined;
url: string | undefined;
} | {
loading: false;
typeChecking: boolean;
totalModulesCount: number;
errors: string[] | null;
warnings: string[] | null;
hasEdgeServer: boolean;
}));
export declare function formatTrigger(trigger: string): string;
export declare const store: import("unistore").Store<OutputState>;