fix(core): update

This commit is contained in:
Philipp Kunz 2018-11-04 02:36:15 +01:00
parent e15a1f4b32
commit 1c7bb0556c

View File

@ -1,5 +1,5 @@
export type TLogType = 'log' | 'increment' | 'gauge' | 'error' | 'success';
export type TLogLevel = 'error' | 'warn' | 'info' | 'verbose' | 'debug' | 'silly';
export type TLogLevel = 'silly' | 'info' | 'debug' | 'note' | 'ok' | 'success' | 'warn' | 'error';
export type TEnvironment = 'local' | 'test' | 'staging' | 'production';
export type TRuntime = 'node' | 'browser';