diff --git a/types/index.d.ts b/types/index.d.ts index 7505746..3908a1b 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -86,5 +86,6 @@ export interface Chalk { bgWhiteBright: Chalk; } -declare function chalk (): any; -export default chalk as Chalk; +declare const chalk: Chalk + +export default chalk