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
17 lines
482 B
Plaintext
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
|