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

15 lines
455 B
Plaintext

interface FunctionComponent {
(...args: unknown[]): unknown;
}
interface ClassComponent {
new (...args: unknown[]): {
props?: unknown;
render(...args: unknown[]): unknown;
};
}
/**
* Wraps a page component with Sentry error instrumentation.
*/
export declare function wrapPageComponentWithSentry(pageComponent: FunctionComponent | ClassComponent): unknown;
export {};
//# sourceMappingURL=wrapPageComponentWithSentry.d.ts.map