UNPKG

ipsambeatae

Version:

Shared dependencies of Compass, the MongoDB extension for VSCode and MongoSH

11 lines (8 loc) 220 B
/** * Constants for various environments MongoDB can run in. */ const ATLAS = 'atlas'; const ADL = 'adl'; const ON_PREM = 'on-prem'; const ENVS = [ATLAS, ADL, ON_PREM] as const; export { ATLAS, ADL, ON_PREM, ENVS };