15 lines
502 B
JavaScript
15 lines
502 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.GetOutboundGateway = void 0;
|
|
const Watchable_1 = require("./Watchable");
|
|
class GetOutboundGateway extends Watchable_1.Watchable {
|
|
constructor(effects) {
|
|
super(effects);
|
|
this.label = 'GetOutboundGateway';
|
|
}
|
|
fetch(callback) {
|
|
return this.effects.getOutboundGateway({ callback });
|
|
}
|
|
}
|
|
exports.GetOutboundGateway = GetOutboundGateway;
|
|
//# sourceMappingURL=GetOutboundGateway.js.map
|