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
12 lines
735 B
Plaintext
12 lines
735 B
Plaintext
import type { LRUMap } from '@sentry/core';
|
|
import type { ClientRequest, IncomingMessage, RequestOptions } from 'http';
|
|
/** Add a breadcrumb for outgoing requests. */
|
|
export declare function addRequestBreadcrumb(request: ClientRequest, response: IncomingMessage | undefined): void;
|
|
/**
|
|
* Add trace propagation headers to an outgoing request.
|
|
* This must be called _before_ the request is sent!
|
|
*/
|
|
export declare function addTracePropagationHeadersToOutgoingRequest(request: ClientRequest, propagationDecisionMap: LRUMap<string, boolean>): void;
|
|
/** Convert an outgoing request to request options. */
|
|
export declare function getRequestOptions(request: ClientRequest): RequestOptions;
|
|
//# sourceMappingURL=outgoingHttpRequest.d.ts.map |