@sentry/browser
Version:
Official Sentry SDK for browsers
10 lines • 403 B
TypeScript
import { BaseTransportOptions } from '@sentry/types';
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