@expressots/shared
Version:
Shared library for ExpressoTS modules 🐎
23 lines (22 loc) • 768 B
JavaScript
/* eslint-disable @typescript-eslint/no-namespace */
Object.defineProperty(exports, "__esModule", { value: true });
exports.Env = void 0;
/**
* The Environment namespace contains all the types and interfaces related to environment configuration.
* @namespace Environment
* @public API
*/
var Env;
(function (Env) {
/**
* Enum representing possible server environments.
* @public API
*/
let ServerEnvironment;
(function (ServerEnvironment) {
ServerEnvironment["Development"] = "development";
ServerEnvironment["Production"] = "production";
ServerEnvironment["Remote"] = "remote";
})(ServerEnvironment = Env.ServerEnvironment || (Env.ServerEnvironment = {}));
})(Env || (exports.Env = Env = {}));
;