mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
22 lines
547 B
JavaScript
22 lines
547 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
/**
|
|
* Extends the environment with new commands.
|
|
*/
|
|
var Plugin = /** @class */ (function () {
|
|
function Plugin() {
|
|
this.name = null;
|
|
this.description = null;
|
|
this.defaults = {};
|
|
this.directory = null;
|
|
this.hidden = false;
|
|
/**
|
|
* A list of commands.
|
|
*/
|
|
this.commands = [];
|
|
this.extensions = [];
|
|
}
|
|
return Plugin;
|
|
}());
|
|
exports.Plugin = Plugin;
|
|
//# sourceMappingURL=plugin.js.map
|