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>
17 lines
789 B
Text
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;
|