import type { BaseTransportOptions, ClientOptions, Options } from '@sentry/core'; import type { OpenTelemetryServerRuntimeOptions } from '@sentry/node-core'; /** * Base options for the Sentry Bun SDK. * Extends the common WinterTC options with OpenTelemetry support shared with Node.js and other server-side SDKs. */ export interface BaseBunOptions extends OpenTelemetryServerRuntimeOptions { } /** * Configuration options for the Sentry Bun SDK * @see @sentry/core Options for more information. */ export interface BunOptions extends Options, BaseBunOptions { } /** * Configuration options for the Sentry Bun SDK Client class * @see BunClient for more information. */ export interface BunClientOptions extends ClientOptions, BaseBunOptions { } //# sourceMappingURL=types.d.ts.map