@reservation-studio/electron-types
Version:
TypeScript типове за ReservationStudioElectron
18 lines (17 loc) • 541 B
TypeScript
/**
* 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.
*/
export declare enum EnvironmentEnum {
LOCAL = "local",
STAGING = "staging",
PRODUCTION = "production"
}