diff --git a/ts/index.ts b/ts/index.ts index 9f759c8..482946d 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -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';