idea-toolbox
Version:
IDEA's utility functions
10 lines (9 loc) • 400 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.BooleanChoices = void 0;
var BooleanChoices;
(function (BooleanChoices) {
BooleanChoices[BooleanChoices["FALSE"] = 0] = "FALSE";
BooleanChoices[BooleanChoices["TRUE"] = 1] = "TRUE";
BooleanChoices[BooleanChoices["ALL"] = 2] = "ALL";
})(BooleanChoices || (exports.BooleanChoices = BooleanChoices = {}));