UNPKG

369 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.ExternalInteractorBase = void 0;
4const Enums_1 = require("../Enums");
5class ExternalInteractorBase {
6 constructor(container) {
7 this.container = container;
8 this.type = Enums_1.InteractorType.External;
9 }
10}
11exports.ExternalInteractorBase = ExternalInteractorBase;