From c51e6484ce778f8b1091407a0f588c2be49433fe Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Thu, 15 Nov 2018 23:39:56 +0100 Subject: [PATCH] fix(types): add lifecycle to log levels --- ts/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ts/index.ts b/ts/index.ts index 26c3412..e6e9dad 100644 --- a/ts/index.ts +++ b/ts/index.ts @@ -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