Files
klz-cables.com/.pnpm-store/v10/files/c9/53e049e7726bd573af8a804a3d639c18ef3e222c6ea3e3d5834aec48feca15f3d653776d6c88d4b11627614f127e85e44cf9edc902ac1094b1cfdf1c31ab2a
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

9 lines
256 B
Plaintext

/**
* A function that is possibly wrapped by Sentry.
*/
export type WrappedFunction<T extends Function = Function> = T & {
__sentry_wrapped__?: WrappedFunction<T>;
__sentry_original__?: T;
};
//# sourceMappingURL=wrappedfunction.d.ts.map