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
16 lines
843 B
Plaintext
16 lines
843 B
Plaintext
import { FetchBreadcrumbHint, HandlerDataFetch, SentryWrappedXMLHttpRequest, XhrBreadcrumbHint } from '@sentry/core';
|
|
import { GLOBAL_OBJ } from '@sentry/core';
|
|
export declare const WINDOW: typeof GLOBAL_OBJ & Pick<Window, Exclude<keyof Window, "document">> & Partial<Pick<Window, "document">>;
|
|
export type NetworkMetaWarning = 'MAYBE_JSON_TRUNCATED' | 'TEXT_TRUNCATED' | 'URL_SKIPPED' | 'BODY_PARSE_ERROR' | 'BODY_PARSE_TIMEOUT' | 'UNPARSEABLE_BODY_TYPE';
|
|
type RequestBody = null | Blob | BufferSource | FormData | URLSearchParams | string;
|
|
export type XhrHint = XhrBreadcrumbHint & {
|
|
xhr: XMLHttpRequest & SentryWrappedXMLHttpRequest;
|
|
input?: RequestBody;
|
|
};
|
|
export type FetchHint = FetchBreadcrumbHint & {
|
|
input: HandlerDataFetch['args'];
|
|
response: Response;
|
|
};
|
|
export {};
|
|
//# sourceMappingURL=types.d.ts.map
|