Files
klz-cables.com/.pnpm-store/v10/files/a8/44182223a2268d9fbe4916419ccfc06c92dbf720a25f83c39b0c96a8f7e0b46a235b74741c7dbd7936ccc5911047019f9b7c3cd1be641a3cbd20f91a016543
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

13 lines
329 B
Plaintext

import { Mechanism } from './mechanism';
import { 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