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>
16 lines
482 B
Text
16 lines
482 B
Text
import { StackFrame } from './stackframe';
|
|
/** JSDoc */
|
|
export interface Stacktrace {
|
|
frames?: StackFrame[];
|
|
frames_omitted?: [
|
|
number,
|
|
number
|
|
];
|
|
}
|
|
export type StackParser = (stack: string, skipFirstLines?: number, framesToPop?: number) => StackFrame[];
|
|
export type StackLineParserFn = (line: string) => StackFrame | undefined;
|
|
export type StackLineParser = [
|
|
number,
|
|
StackLineParserFn
|
|
];
|
|
//# sourceMappingURL=stacktrace.d.ts.map
|