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>
19 lines
641 B
Text
19 lines
641 B
Text
import type { OverlayState } from '../../shared';
|
|
import type { StackFrame } from '../../../shared/stack-frame';
|
|
import { type ReadyRuntimeError } from '../../utils/get-error-by-type';
|
|
export type SupportedErrorEvent = {
|
|
id: number;
|
|
error: Error;
|
|
frames: readonly StackFrame[];
|
|
type: 'runtime' | 'recoverable' | 'console';
|
|
};
|
|
type Props = {
|
|
children: (params: {
|
|
runtimeErrors: ReadyRuntimeError[];
|
|
totalErrorCount: number;
|
|
}) => React.ReactNode;
|
|
state: OverlayState;
|
|
isAppDir: boolean;
|
|
};
|
|
export declare const RenderError: (props: Props) => import("react/jsx-runtime").JSX.Element;
|
|
export {};
|