@tmlmobilidade/lib
Version:
11 lines (10 loc) • 332 B
TypeScript
/**
* Allowed Environment values.
*/
export type Environment = 'development' | 'production' | 'staging';
/**
* Get the current environment from server-side ENVIRONMENT
* or client-side NEXT_PUBLIC_ENVIRONMET variables.
* @returns The current environment value.
*/
export declare function getCurrentEnvironment(): Environment;