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

17 lines
789 B
Text

import { type OverlayDispatch, type OverlayState } from '../../../shared';
import type { ReadyRuntimeError } from '../../../utils/get-error-by-type';
import type { HydrationErrorState } from '../../../../shared/hydration-error';
export interface ErrorBaseProps {
rendered: boolean;
transitionDurationMs: number;
isTurbopack: boolean;
versionInfo: OverlayState['versionInfo'];
errorCount: number;
}
export declare function ErrorOverlay({ state, dispatch, getSquashedHydrationErrorDetails, runtimeErrors, errorCount, }: {
state: OverlayState;
dispatch: OverlayDispatch;
getSquashedHydrationErrorDetails: (error: Error) => HydrationErrorState | null;
runtimeErrors: ReadyRuntimeError[];
errorCount: number;
}): import("react/jsx-runtime").JSX.Element;