Rocky_Mountain_Vending/.pnpm-store/v10/files/e5/f81cb8fbb97e9e8015733284c5b053a30e1cc0342155ac01d42c7133919892a8b98a3c24f2343c513dc9feaddf1914c9d0c814963d50728b98ba0f59fa6e9b
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

13 lines
642 B
Text

import type { SupportedErrorEvent } from '../container/runtime-error/render-error';
import type { OriginalStackFrame } from '../../shared/stack-frame';
export type ReadyRuntimeError = {
id: number;
runtime: true;
error: Error & {
environmentName?: string;
};
frames: readonly OriginalStackFrame[] | (() => Promise<readonly OriginalStackFrame[]>);
type: 'runtime' | 'console' | 'recoverable';
};
export declare const useFrames: (error: ReadyRuntimeError | null) => readonly OriginalStackFrame[];
export declare function getErrorByType(event: SupportedErrorEvent, isAppDir: boolean): Promise<ReadyRuntimeError>;