import { pair } from "./base.pair"; import { enumeration } from "./base.enumeration"; export declare namespace environmentEnum { enum Id { PROD = "prod", STAGE = "stage", TEST = "test", DEV = "dev" } type Type = typeof Id; const Table: Record; const Title: { [x: string]: string; }; const Alternative: { p: string; live: string; production: string; s: string; staging: string; model: string; preprod: string; preproduction: string; demo: string; external: string; t: string; q: string; testing: string; internal: string; qc: string; qa: string; d: string; development: string; trunk: string; sandbox: string; }; interface Service extends enumeration.Service { } interface Pair extends pair.Core { } type IdOrPair = Id | Pair; }