Files
klz-cables.com/.pnpm-store/v10/files/82/c998903259d975485e228d016abbccee9273b1a6122a7d625ad9c737f703a73e67d0c45fae114adac7295de3f4ae8520ed2a838bfe3ea78bf2c8af88210277
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

8 lines
247 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