Rocky_Mountain_Vending/.pnpm-store/v10/files/a3/e1835e3304d51334653eab8c0748388951d02f154b6462ca203baf16baf91cc730c846e045b7b81af4fbdb63697e1736d84f14267de3e7e77dd8223db5fe8c
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

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 {};