"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