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
17 lines
666 B
Plaintext
17 lines
666 B
Plaintext
export interface Options {
|
|
/**
|
|
* Whether breadcrumbs should be recorded for requests
|
|
* Defaults to true
|
|
*/
|
|
breadcrumbs: boolean;
|
|
/**
|
|
* Function determining whether or not to create spans to track outgoing requests to the given URL.
|
|
* By default, spans will be created for all outgoing requests.
|
|
*/
|
|
shouldCreateSpanForRequest?: (url: string) => boolean;
|
|
}
|
|
/**
|
|
* Creates spans and attaches tracing headers to fetch requests on WinterCG runtimes.
|
|
*/
|
|
export declare const winterCGFetchIntegration: (options?: Partial<Options> | undefined) => import("@sentry/core").Integration;
|
|
//# sourceMappingURL=wintercg-fetch.d.ts.map |