stryker-api
Version:
The api for the extendable JavaScript mutation testing framework Stryker
27 lines • 957 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
var tslib_1 = require("tslib");
var core_1 = require("../../core");
var ConfigEditorFactory;
(function (ConfigEditorFactory_1) {
/**
* Represents a Factory for ConfigEditors.
*/
var ConfigEditorFactory = /** @class */ (function (_super) {
tslib_1.__extends(ConfigEditorFactory, _super);
function ConfigEditorFactory() {
return _super.call(this, 'config-reader') || this;
}
return ConfigEditorFactory;
}(core_1.Factory));
var configEditorFactory = new ConfigEditorFactory();
/**
* Returns the current instance of the ConfigEditorFactory.
*/
function instance() {
return configEditorFactory;
}
ConfigEditorFactory_1.instance = instance;
})(ConfigEditorFactory || (ConfigEditorFactory = {}));
exports.default = ConfigEditorFactory;
//# sourceMappingURL=ConfigEditorFactory.js.map