@sentry/browser
Version:
Official Sentry SDK for browsers
10 lines • 407 B
TypeScript
import type { BaseTransportOptions } from '@sentry/core';
export interface BrowserTransportOptions extends BaseTransportOptions {
/** Fetch API init parameters. Used by the FetchTransport */
fetchOptions?: RequestInit;
/** Custom headers for the transport. Used by the XHRTransport and FetchTransport */
headers?: {
[key: string]: string;
};
}
//# sourceMappingURL=types.d.ts.map