Files
klz-cables.com/.pnpm-store/v10/files/6c/064c16c0ab334ca879902b88a38f760b8c6b3631cc1d3cfbc6b8902a5de0b9a8863eac487e1201212b0738000d3c2cb7063e7267f124f49232c133c1c6bd47
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

16 lines
471 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