Files
klz-cables.com/.pnpm-store/v10/files/65/bea2d61638c3ca013bc99bd19efac739d26da899ec9dab75ad4daa8640125802197c8ad44717a01ae9287bc6aa45fe894e42e0fee387629915651cb81ebbd3
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
272 B
Plaintext

import { 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