card-drop/src/constants/Environment.ts
Ethan Lane 8ddf52a552
All checks were successful
continuous-integration/drone/push Build is passing
Add ability to register commands and events to specific environments
2023-09-29 18:18:53 +01:00

8 lines
No EOL
145 B
TypeScript

export enum Environment {
None = 0,
Production = 1 << 0,
Stage = 1 << 1,
Local = 1 << 2,
All = Production | Stage | Local,
}