mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
20 lines
655 B
JavaScript
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
|