This commit is contained in:
Tom Crockett 2017-10-21 06:02:20 +00:00 committed by GitHub
commit d0012ed000

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;