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

30 lines
1.0 KiB
Plaintext

import { browserTracingIntegration } from '@sentry/browser';
import { Integration } from '@sentry/core';
import { Location } from './types';
type HistoryV3 = {
location?: Location;
listen?(cb: (location: Location) => void): void;
} & Record<string, any>;
export type Route = {
path?: string;
childRoutes?: Route[];
};
export type Match = (props: {
location: Location;
routes: Route[];
}, cb: (error?: Error, _redirectLocation?: Location, renderProps?: {
routes?: Route[];
}) => void) => void;
interface ReactRouterOptions {
history: HistoryV3;
routes: Route[];
match: Match;
}
/**
* A browser tracing integration that uses React Router v3 to instrument navigations.
* Expects `history` (and optionally `routes` and `matchPath`) to be passed as options.
*/
export declare function reactRouterV3BrowserTracingIntegration(options: Parameters<typeof browserTracingIntegration>[0] & ReactRouterOptions): Integration;
export {};
//# sourceMappingURL=reactrouterv3.d.ts.map