Rocky_Mountain_Vending/.pnpm-store/v10/files/0d/cc61d35364f9d752977f958453df394cf51a99790bb626c4036dfff74383a8b65db88e0ad187ffcad11b4076e40fe01434c25c302bc2d3d764ec4513ed7f55
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

10 lines
411 B
Text

import type { ReadyRuntimeError } from './utils/get-error-by-type';
export declare const RenderErrorContext: import("react").Context<{
runtimeErrors: ReadyRuntimeError[];
totalErrorCount: number;
}>;
export declare const useRenderErrorContext: () => {
runtimeErrors: ReadyRuntimeError[];
totalErrorCount: number;
};
export declare function DevOverlay(): import("react/jsx-runtime").JSX.Element;