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

29 lines
1019 B
Plaintext

import { browserTracingIntegration } from '@sentry/browser';
import type { Integration } from '@sentry/core';
import type { 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