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

11 lines
265 B
Plaintext

import type { Stacktrace } from './stacktrace';
/** JSDoc */
export interface Thread {
id?: number | string;
name?: string;
main?: boolean;
stacktrace?: Stacktrace;
crashed?: boolean;
current?: boolean;
}
//# sourceMappingURL=thread.d.ts.map