Files
klz-cables.com/.pnpm-store/v10/files/1d/07de98a383c3b94695a09bd4ffdd67ecfe200939b5a33ff7e573a8ca0db1caf4f19e69429eaa283b81e1c1fecdd0f9df500c6e6b19947faa76aed2a7a5c2df
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

22 lines
855 B
Plaintext

interface BrowserApiErrorsOptions {
setTimeout: boolean;
setInterval: boolean;
requestAnimationFrame: boolean;
XMLHttpRequest: boolean;
eventTarget: boolean | string[];
/**
* If you experience issues with this integration causing double-invocations of event listeners,
* try setting this option to `true`. It will unregister the original callbacks from the event targets
* before adding the instrumented callback.
*
* @default false
*/
unregisterOriginalCallbacks: boolean;
}
/**
* Wrap timer functions and event targets to catch errors and provide better meta data.
*/
export declare const browserApiErrorsIntegration: (options?: Partial<BrowserApiErrorsOptions> | undefined) => import("@sentry/core").Integration;
export {};
//# sourceMappingURL=browserapierrors.d.ts.map