Skip to main content
Module

x/sentry/index.d.ts>Integrations

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

Import the integration function directly, e.g. inboundFiltersIntegration() instead of `new Integrations.InboundFilter().

import { Integrations } from "https://deno.land/x/sentry@8.0.0-alpha.2/index.d.ts";

type

{ DenoContext: IntegrationClass<Integration & { processEvent: (event: Event) => Promise<Event>; }>; GlobalHandlers: IntegrationClass<Integration & { setup: (client: Client<ClientOptions<BaseTransportOptions>>) => void; }>; NormalizePaths: IntegrationClass<Integration & { processEvent: (event: Event) => Event; }>; ContextLines: IntegrationClass<Integration & { processEvent: (event: Event) => Promise<Event>; }>; DenoCron: IntegrationClass<Integration & { setup: (client: Client<ClientOptions<BaseTransportOptions>>) => void; }>; }