Files
klz-cables.com/.pnpm-store/v10/files/c5/9576f442a9fbbffb5280d3b13074331bb1a8399dafa55ed07621372b4382188a29830514f01297ee9e32624429dd52dedcedef73c88379e55f65d6a3cf7c41
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

23 lines
521 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