Skip to main content
Module

x/sentry/index.mjs>defaultIntegrations

The Official Sentry Deno SDK
Go to Latest
variable defaultIntegrations
Deprecated
Deprecated

Use getDefaultIntegrations(options) instead.

import { defaultIntegrations } from "https://deno.land/x/sentry@7.95.0/index.mjs";

type

(
| (Integration & { processEvent: (event: Event) => Promise<Event>; })
| (Integration & { setup: (client: Client<ClientOptions<BaseTransportOptions>>) => void; })
| (Integration & { processEvent: (event: Event) => Event; })
| (Integration & { preprocessEvent: (
event: Event,
hint: EventHint,
client: Client<ClientOptions<BaseTransportOptions>>,
) => void; })
| (Integration & { setupOnce: () => void; })
)[]