dbmaster-cli
Version:
Tool for converting tables between Fifa Soccer Games
17 lines (16 loc) • 673 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.ActionType = exports.OutputFormat = void 0;
var OutputFormat;
(function (OutputFormat) {
OutputFormat["Csv"] = "csv";
OutputFormat["Json"] = "json";
})(OutputFormat = exports.OutputFormat || (exports.OutputFormat = {}));
var ActionType;
(function (ActionType) {
ActionType["ActionAppendDefault"] = "append-default";
ActionType["ActionExtendContract"] = "extend-contract";
ActionType["ActionValidate"] = "validate";
ActionType["ActionFilter"] = "filter";
ActionType["ActionOnData"] = "on-data";
})(ActionType = exports.ActionType || (exports.ActionType = {}));