芝麻web文件管理V1.00
编辑当前文件:/home/freeclou/app.optimyar.com/backend/node_modules/@sentry/types/esm/integration.d.ts
import { EventProcessor } from './eventprocessor'; import { Hub } from './hub'; /** Integration Class Interface */ export interface IntegrationClass
{ /** * Property that holds the integration name */ id: string; new (...args: any[]): T; } /** Integration interface */ export interface Integration { /** * Returns {@link IntegrationClass.id} */ name: string; /** * Sets the integration up only once. * This takes no options on purpose, options should be passed in the constructor */ setupOnce(addGlobalEventProcessor: (callback: EventProcessor) => void, getCurrentHub: () => Hub): void; } //# sourceMappingURL=integration.d.ts.map