Swap-Aggregator-Subgraph/node_modules/gluegun/build/domain/extension.js
Richa-iitr d211083153 Revert "Revert "added handler""
This reverts commit c36ee8c5ca.
2022-07-03 07:30:05 +05:30

20 lines
655 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
/**
* An extension will add functionality to the toolbox that each command will receive.
*/
var Extension = /** @class */ (function () {
function Extension() {
/** The name of the extension. */
this.name = null;
/** The description. */
this.description = null;
/** The file this extension comes from. */
this.file = null;
/** The function used to attach functionality to the toolbox. */
this.setup = null;
}
return Extension;
}());
exports.Extension = Extension;
//# sourceMappingURL=extension.js.map