unleash-server
Version:
Unleash is an enterprise ready feature toggles service. It provides different strategies for handling feature toggles.
13 lines • 467 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.IAuthType = void 0;
var IAuthType;
(function (IAuthType) {
IAuthType["OPEN_SOURCE"] = "open-source";
IAuthType["DEMO"] = "demo";
IAuthType["ENTERPRISE"] = "enterprise";
IAuthType["HOSTED"] = "hosted";
IAuthType["CUSTOM"] = "custom";
IAuthType["NONE"] = "none";
})(IAuthType = exports.IAuthType || (exports.IAuthType = {}));
//# sourceMappingURL=option.js.map