import type { ModuleInstance } from '../module-model/index.js'; import type { SentinelModuleEventData } from './EventData.js'; import type { CustomSentinelModule, SentinelModule } from './Module.js'; import type { SentinelParams } from './Params.js'; import type { Sentinel } from './Sentinel.js'; export interface SentinelInstance extends SentinelModule, Sentinel, ModuleInstance { } export interface CustomSentinelInstance> = SentinelModuleEventData>> extends CustomSentinelModule, Sentinel, SentinelInstance { } //# sourceMappingURL=Instance.d.ts.map