toucan-js
Version:
Cloudflare Workers client for Sentry
18 lines • 492 B
TypeScript
/// <reference types="@cloudflare/workers-types" />
import type { BaseTransportOptions } from '@sentry/types';
import type { Context } from '../types';
export type FetchTransportOptions = BaseTransportOptions & {
/**
* Custom headers passed to fetch.
*/
headers?: Record<string, string>;
/**
* Cloudflare Workers context.
*/
context?: Context;
/**
* Custom fetch function.
*/
fetcher?: typeof fetch;
};
//# sourceMappingURL=types.d.ts.map