diff --git a/index.d.ts b/index.d.ts index 272b20f..23dd077 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,4 +1,4 @@ -declare const enum LevelEnum { +declare enum LevelEnum { /** All colors disabled. */ @@ -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: chalk.Level; + Level: typeof LevelEnum; Color: Color; ForegroundColor: ForegroundColor; BackgroundColor: BackgroundColor;