UNPKG

345 BTypeScriptView Raw
1import type { Container } from "../../Core/Container";
2import type { IExternalInteractor } from "../../Core/Interfaces/IExternalInteractor";
3export declare class Connector implements IExternalInteractor {
4 private readonly container;
5 constructor(container: Container);
6 isEnabled(): boolean;
7 reset(): void;
8 interact(): void;
9}