Rocky_Mountain_Vending/.pnpm-store/v10/files/50/e39733e31648f7b777ae72ea76e175d1221d9c25a57647b9130b087014315d4518392124d88ca140c69f36a0262bc307502ee6b0be154265756aa8424c307b
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

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