Files
klz-cables.com/.pnpm-store/v10/files/50/e39733e31648f7b777ae72ea76e175d1221d9c25a57647b9130b087014315d4518392124d88ca140c69f36a0262bc307502ee6b0be154265756aa8424c307b
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

17 lines
482 B
Plaintext

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