Fix export typing

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

4
types/index.d.ts vendored
View file

@ -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;