From b1a91f3de2f295f9a845933fa6def36ba8452df4 Mon Sep 17 00:00:00 2001 From: Simen Bekkhus Date: Mon, 23 Mar 2020 21:00:03 +0100 Subject: [PATCH] fix: correct type declarations in isolated modules mode --- index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.d.ts b/index.d.ts index 7e22c45..272b20f 100644 --- a/index.d.ts +++ b/index.d.ts @@ -400,7 +400,7 @@ This simply means that `chalk.red.yellow.green` is equivalent to `chalk.green`. */ declare const chalk: chalk.Chalk & chalk.ChalkFunction & { supportsColor: chalk.ColorSupport | false; - Level: typeof LevelEnum; + Level: chalk.Level; Color: Color; ForegroundColor: ForegroundColor; BackgroundColor: BackgroundColor;