Remove const enum from Level TypeScript definition (#295)

This commit is contained in:
strothj jason@jasons.io 2018-09-05 11:34:16 -04:00
parent 70f22d87ba
commit 6e1c60e73d
2 changed files with 3 additions and 2 deletions

2
types/index.d.ts vendored
View file

@ -1,7 +1,7 @@
// Type definitions for Chalk
// Definitions by: Thomas Sauer <https://github.com/t-sauer>
export const enum Level {
export enum Level {
None = 0,
Basic = 1,
Ansi256 = 2,

View file

@ -4,6 +4,7 @@
"target": "es6",
"noImplicitAny": true,
"noEmit": true,
"allowJs": true
"allowJs": true,
"isolatedModules": true
}
}