From 1c7bb0556cceea3cd6f2d4c7b59dae11990d9fd9 Mon Sep 17 00:00:00 2001 From: Phil Kunz Date: Sun, 4 Nov 2018 02:36:15 +0100 Subject: [PATCH] fix(core): update --- ts/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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';