Rocky_Mountain_Vending/.pnpm-store/v10/files/d2/ee5c8c3e0dc00991ed6d52bfa1d5417a0edf5380c336c375b636c3e329585cc85485b15ce9e16cae78da92f57bb40ff6386d58cc075011b9146fc595de814e
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

10 lines
No EOL
438 B
Text

import type { 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