flipper-common
Version:
Server & UI shared Flipper utilities
24 lines • 846 B
JavaScript
;
/**
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
Object.defineProperty(exports, "__esModule", { value: true });
exports.ReleaseChannel = exports.Tristate = void 0;
var Tristate;
(function (Tristate) {
Tristate[Tristate["True"] = 0] = "True";
Tristate[Tristate["False"] = 1] = "False";
Tristate[Tristate["Unset"] = 2] = "Unset";
})(Tristate || (exports.Tristate = Tristate = {}));
var ReleaseChannel;
(function (ReleaseChannel) {
ReleaseChannel["DEFAULT"] = "default";
ReleaseChannel["STABLE"] = "stable";
ReleaseChannel["INSIDERS"] = "insiders";
})(ReleaseChannel || (exports.ReleaseChannel = ReleaseChannel = {}));
//# sourceMappingURL=settings.js.map