UNPKG

354 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3var Channel = /** @class */ (function () {
4 function Channel(context) {
5 this.context = context;
6 }
7 Channel.prototype.execute = function (body, parameters, handler) {
8 throw "Not Implemented";
9 };
10 return Channel;
11}());
12exports.Channel = Channel;