@reservation-studio/electron-types
Version:
TypeScript типове за ReservationStudioElectron
22 lines (21 loc) • 794 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.EnvironmentEnum = void 0;
/**
* Enumeration representing different application environments.
*
* This enum is used to specify and manage various environments in which
* the application might run, such as local development, staging, and
* production environments.
*
* Members:
* - LOCAL: Represents the local development environment.
* - STAGING: Represents the staging environment.
* - PRODUCTION: Represents the production environment.
*/
var EnvironmentEnum;
(function (EnvironmentEnum) {
EnvironmentEnum["LOCAL"] = "local";
EnvironmentEnum["STAGING"] = "staging";
EnvironmentEnum["PRODUCTION"] = "production";
})(EnvironmentEnum || (exports.EnvironmentEnum = EnvironmentEnum = {}));