Files
klz-cables.com/.pnpm-store/v10/files/50/d8dcc29ec8c151ec2a69f0da4fe23d760d0482baf50273b02dc6e85475ed016e08f25b40befa39af5c887e7f46742ac5561c61e7e14d3b0b1ff4d72169bd4d
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

22 lines
498 B
Plaintext

/** JSDoc */
export interface StackFrame {
filename?: string;
function?: string;
module?: string;
platform?: string;
lineno?: number;
colno?: number;
abs_path?: string;
context_line?: string;
pre_context?: string[];
post_context?: string[];
in_app?: boolean;
instruction_addr?: string;
addr_mode?: string;
vars?: {
[key: string]: any;
};
debug_id?: string;
module_metadata?: any;
}
//# sourceMappingURL=stackframe.d.ts.map