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
13 lines
755 B
Plaintext
13 lines
755 B
Plaintext
import { browserTracingIntegration as originalBrowserTracingIntegration } from '@sentry/browser';
|
|
import type { Integration } from '@sentry/core';
|
|
/**
|
|
* A custom browser tracing integration for TanStack Router.
|
|
*
|
|
* The minimum compatible version of `@tanstack/react-router` is `1.64.0`.
|
|
*
|
|
* @param router A TanStack Router `Router` instance that should be used for routing instrumentation.
|
|
* @param options Sentry browser tracing configuration.
|
|
*/
|
|
export declare function tanstackRouterBrowserTracingIntegration(router: any, // This is `any` because we don't want any type mismatches if TanStack Router changes their types
|
|
options?: Parameters<typeof originalBrowserTracingIntegration>[0]): Integration;
|
|
//# sourceMappingURL=tanstackrouter.d.ts.map |