Files
klz-cables.com/.pnpm-store/v10/files/5a/ce3070e0b40a6fafb33261600d0cb54fb90d6d04b57c9e9270a03d5c74fd2ad7eb1de6ec7ec8779e9fbd0de8cf66530aa107f395d2c596cf240745763e854d
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

12 lines
326 B
Plaintext

import type { Mechanism } from './mechanism';
import type { Stacktrace } from './stacktrace';
/** JSDoc */
export interface Exception {
type?: string;
value?: string;
mechanism?: Mechanism;
module?: string;
thread_id?: number | string;
stacktrace?: Stacktrace;
}
//# sourceMappingURL=exception.d.ts.map