Fix export typing

This commit is contained in:
Tom Crockett 2017-10-20 23:00:18 -07:00 committed by GitHub
commit 6cd66b1ac8

4
types/index.d.ts vendored
View file

@ -86,5 +86,5 @@ export interface Chalk {
bgWhiteBright: Chalk; bgWhiteBright: Chalk;
} }
declare function chalk (): any; declare const chalk: Chalk;
export default chalk as Chalk; export default chalk;