@a2r/telemetry
Version:
Telemetry library for the A2R Framework
12 lines (11 loc) • 382 B
TypeScript
/**
* Allows you force an specific environment
* @param {string} environment Environment to force: development, production, etc.
*/
export declare const setForceSpecificEnvironment: (environment: string) => void;
/**
* Gets the current node environment
* @returns {string} current node environment
*/
declare const getEnvironment: () => string;
export default getEnvironment;