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
20 lines
812 B
Plaintext
20 lines
812 B
Plaintext
import type { Client } from '@sentry/core';
|
|
/**
|
|
* Instruments the Next.js pages router for pageloads.
|
|
* Only supported for client side routing. Works for Next >= 10.
|
|
*
|
|
* Leverages the SingletonRouter from the `next/router` to
|
|
* generate pageload/navigation transactions and parameterize
|
|
* transaction names.
|
|
*/
|
|
export declare function pagesRouterInstrumentPageLoad(client: Client): void;
|
|
/**
|
|
* Instruments the Next.js pages router for navigation.
|
|
* Only supported for client side routing. Works for Next >= 10.
|
|
*
|
|
* Leverages the SingletonRouter from the `next/router` to
|
|
* generate pageload/navigation transactions and parameterize
|
|
* transaction names.
|
|
*/
|
|
export declare function pagesRouterInstrumentNavigation(client: Client): void;
|
|
//# sourceMappingURL=pagesRouterRoutingInstrumentation.d.ts.map |