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>
10 lines
No EOL
438 B
Text
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 |