smartlog-interfaces/ts/index.ts
2018-02-08 01:52:08 +01:00

20 lines
384 B
TypeScript

export type TLogLevel =
| "error"
| "warn"
| "info"
| "verbose"
| "debug"
| "silly";
export interface ILogContext {
zone?: string;
company?: string;
companyunit?: string;
containerName?: string;
environment: TEnvironment;
runtime: TRuntime;
}
export type TEnvironment = "local" | "test" | "staging" | "production";
export type TRuntime = "node" | "browser";