You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
693 B

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var ERROR_CODE;
(function (ERROR_CODE) {
ERROR_CODE["UNKNOWN"] = "UNKNOWN";
ERROR_CODE["EPERM"] = "EPERM";
ERROR_CODE["ERROR"] = "ERROR";
ERROR_CODE["OTHER"] = "OTHER";
})(ERROR_CODE = exports.ERROR_CODE || (exports.ERROR_CODE = {}));
var SUPPORTED_EDITTORS;
(function (SUPPORTED_EDITTORS) {
SUPPORTED_EDITTORS["vscode"] = "code";
SUPPORTED_EDITTORS["sublime"] = "subl";
SUPPORTED_EDITTORS["atom"] = "atom";
SUPPORTED_EDITTORS["webstorm"] = "webstorm";
SUPPORTED_EDITTORS["idea"] = "idea";
})(SUPPORTED_EDITTORS = exports.SUPPORTED_EDITTORS || (exports.SUPPORTED_EDITTORS = {}));