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>
22 lines
No EOL
498 B
Text
22 lines
No EOL
498 B
Text
/** JSDoc */
|
|
export interface StackFrame {
|
|
filename?: string;
|
|
function?: string;
|
|
module?: string;
|
|
platform?: string;
|
|
lineno?: number;
|
|
colno?: number;
|
|
abs_path?: string;
|
|
context_line?: string;
|
|
pre_context?: string[];
|
|
post_context?: string[];
|
|
in_app?: boolean;
|
|
instruction_addr?: string;
|
|
addr_mode?: string;
|
|
vars?: {
|
|
[key: string]: any;
|
|
};
|
|
debug_id?: string;
|
|
module_metadata?: any;
|
|
}
|
|
//# sourceMappingURL=stackframe.d.ts.map |