remove const from enum
This commit is contained in:
parent
b1a91f3de2
commit
8e2df82370
1 changed files with 2 additions and 2 deletions
4
index.d.ts
vendored
4
index.d.ts
vendored
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue