translation-io-sync
Version:
This Typescript implementation acts as a `translation.io` client
33 lines (32 loc) • 1.6 kB
JavaScript
;
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
return c > 3 && r && Object.defineProperty(target, key, r), r;
};
var __metadata = (this && this.__metadata) || function (k, v) {
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
};
Object.defineProperty(exports, "__esModule", { value: true });
const clime_1 = require("clime");
const synchronizer_1 = require("../../synchronizer");
const connection_options_1 = require("../connection-options");
let default_1 = class default_1 extends clime_1.Command {
execute(options) {
const configuration = options.createConfiguration();
new synchronizer_1.Synchronizer(configuration).init();
}
};
__decorate([
clime_1.metadata,
__metadata("design:type", Function),
__metadata("design:paramtypes", [connection_options_1.ConnectionOptions]),
__metadata("design:returntype", void 0)
], default_1.prototype, "execute", null);
default_1 = __decorate([
(0, clime_1.command)({
description: "Initialize a project on Translation.io",
})
], default_1);
exports.default = default_1;