Rocky_Mountain_Vending/.pnpm-store/v10/files/b5/f6867ccb900913211678dc28603035bb9b260ad17ef5aeb2b2fc04a7d883efb64e2f6335aad154aeb161981a6b2dd7227e6fd7a49dade9c922027a17d571f6
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

8 lines
344 B
Text

declare const digestSym: unique symbol;
type ConsoleError = Error & {
[digestSym]: 'NEXT_CONSOLE_ERROR';
environmentName: string;
};
export declare function createConsoleError(message: string | Error, environmentName?: string | null): ConsoleError;
export declare const isConsoleError: (error: any) => error is ConsoleError;
export {};