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