fix(types): add lifecycle to log levels

This commit is contained in:
Philipp Kunz 2018-11-15 23:39:56 +01:00
parent 91071a22d1
commit c51e6484ce

View File

@ -9,12 +9,12 @@ export type TLogType =
| 'success'
| 'value'
| 'finance'
| 'compliance';
| 'compliance'
/**
* the available log levels
*/
export type TLogLevel = 'silly' | 'info' | 'debug' | 'note' | 'ok' | 'success' | 'warn' | 'error';
export type TLogLevel = 'silly' | 'info' | 'debug' | 'note' | 'ok' | 'success' | 'warn' | 'error' | 'lifecycle';
/**
* the available environments