unleash-server
Version:
Unleash is an enterprise ready feature flag service. It provides different strategies for handling feature flags.
16 lines • 488 B
JavaScript
export var IAuthType;
(function (IAuthType) {
IAuthType["OPEN_SOURCE"] = "open-source";
IAuthType["DEMO"] = "demo";
/**
* Self-hosted by the customer. Should eventually be renamed to better reflect this.
*/
IAuthType["ENTERPRISE"] = "enterprise";
/**
* Hosted by Unleash.
*/
IAuthType["HOSTED"] = "hosted";
IAuthType["CUSTOM"] = "custom";
IAuthType["NONE"] = "none";
})(IAuthType || (IAuthType = {}));
//# sourceMappingURL=option.js.map