simple-leveled-log-methods
Version:
a simple and opinionated logging library. plays well with aws lambda + cloudwatch.
7 lines (6 loc) • 325 B
TypeScript
import { SupportedEnvironment } from './constants';
/**
* identifies the supported environment that this is being run in, as best as possible
* - defaults to LOCAL environment, as it has the most common settings and is not distinguishable otherwise
*/
export declare const identifyEnvironment: () => SupportedEnvironment;