Rocky_Mountain_Vending/.pnpm-store/v10/files/18/4072c67652c3a0d4ee95da1565f8fa90b1e80b492e1447d0f3d4d2a720c9bc6811c8b4daf33751d8a24eaeee06bb956a55b182629e0e36e9195a846641bf59
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

23 lines
1.3 KiB
Text

import * as React from 'react';
import type { DebugInfo } from '../../../../shared/types';
import type { ErrorMessageType } from '../error-message/error-message';
import type { ErrorType } from '../error-type-label/error-type-label';
import type { ErrorBaseProps } from '../error-overlay/error-overlay';
import type { ReadyRuntimeError } from '../../../utils/get-error-by-type';
export interface ErrorOverlayLayoutProps extends ErrorBaseProps {
errorMessage: ErrorMessageType;
errorType: ErrorType;
children?: React.ReactNode;
errorCode?: string;
error: ReadyRuntimeError['error'];
debugInfo?: DebugInfo;
isBuildError?: boolean;
onClose?: () => void;
runtimeErrors?: ReadyRuntimeError[];
activeIdx?: number;
setActiveIndex?: (index: number) => void;
dialogResizerRef?: React.RefObject<HTMLDivElement | null>;
generateErrorInfo: () => string;
}
export declare function ErrorOverlayLayout({ errorMessage, errorType, children, errorCode, errorCount, error, debugInfo, isBuildError, onClose, versionInfo, runtimeErrors, activeIdx, setActiveIndex, isTurbopack, dialogResizerRef, generateErrorInfo, rendered, transitionDurationMs, }: ErrorOverlayLayoutProps): import("react/jsx-runtime").JSX.Element;
export declare const styles: string;