@sentry/core
Version:
Base implementation for all Sentry JavaScript SDKs
26 lines (25 loc) • 1.22 kB
TypeScript
import { Client, Integration, Options } from '@sentry/types';
declare module '@sentry/types' {
interface Integration {
isDefaultInstance?: boolean;
}
}
export declare const installedIntegrations: string[];
/** Map of integrations assigned to a client */
export type IntegrationIndex = {
[key: string]: Integration;
};
/** Gets integrations to install */
export declare function getIntegrationsToSetup(options: Options): Integration[];
/**
* Given a list of integration instances this installs them all. When `withDefaults` is set to `true` then all default
* integrations are added unless they were already provided before.
* @param integrations array of integration instances
* @param withDefault should enable default integrations
*/
export declare function setupIntegrations(client: Client, integrations: Integration[]): IntegrationIndex;
/** Setup a single integration. */
export declare function setupIntegration(client: Client, integration: Integration, integrationIndex: IntegrationIndex): void;
/** Add an integration to the current hub's client. */
export declare function addIntegration(integration: Integration): void;
//# sourceMappingURL=integration.d.ts.map