@indicafix/types
Version:
useful package for type sharing in different services.
39 lines (38 loc) • 1.65 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TextSize = exports.QuestionStatus = exports.QuestionType = exports.QuestionCategory = exports.ChartType = void 0;
var ChartType;
(function (ChartType) {
ChartType["speedometer"] = "speedometer";
ChartType["horizontalBar"] = "horizontalBar";
ChartType["verticalBar"] = "verticalBar";
})(ChartType = exports.ChartType || (exports.ChartType = {}));
var QuestionCategory;
(function (QuestionCategory) {
QuestionCategory["demographic"] = "demographic";
QuestionCategory["normal"] = "normal";
QuestionCategory["indicator"] = "indicator";
QuestionCategory["topic"] = "topic";
})(QuestionCategory = exports.QuestionCategory || (exports.QuestionCategory = {}));
var QuestionType;
(function (QuestionType) {
QuestionType["radio"] = "radio";
QuestionType["checkbox"] = "checkbox";
QuestionType["range"] = "range";
QuestionType["radioMatrix"] = "radioMatrix";
QuestionType["rangeMatrix"] = "rangeMatrix";
QuestionType["checkboxMatrix"] = "checkboxMatrix";
QuestionType["text"] = "text";
})(QuestionType = exports.QuestionType || (exports.QuestionType = {}));
var QuestionStatus;
(function (QuestionStatus) {
QuestionStatus["inactive"] = "inactive";
QuestionStatus["active"] = "active";
QuestionStatus["archived"] = "archived";
QuestionStatus["deleted"] = "deleted";
})(QuestionStatus = exports.QuestionStatus || (exports.QuestionStatus = {}));
var TextSize;
(function (TextSize) {
TextSize["short"] = "short";
TextSize["long"] = "long";
})(TextSize = exports.TextSize || (exports.TextSize = {}));