UNPKG

717 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3exports.module = void 0;
4const tslib_1 = require("tslib");
5const inversify_1 = require("inversify");
6const base_1 = require("./base");
7let ValidateCommandRunner = class ValidateCommandRunner extends base_1.AbstractCommandRunner {
8 constructor() {
9 super();
10 }
11 run(_options) {
12 return true;
13 }
14};
15ValidateCommandRunner = tslib_1.__decorate([
16 inversify_1.injectable(),
17 tslib_1.__metadata("design:paramtypes", [])
18], ValidateCommandRunner);
19exports.module = new inversify_1.ContainerModule((bind) => {
20 bind(base_1.AbstractCommandRunner).to(ValidateCommandRunner);
21});
22//# sourceMappingURL=validate.js.map
\No newline at end of file