From cee2ec09485f20f2dabe43aa8871937872c48bd5 Mon Sep 17 00:00:00 2001 From: Rogier Schouten Date: Wed, 4 Jun 2014 12:16:32 +0200 Subject: [PATCH] Add typings file for ansicolors NPM module. --- ansicolors/ansicolors.d.ts | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 ansicolors/ansicolors.d.ts diff --git a/ansicolors/ansicolors.d.ts b/ansicolors/ansicolors.d.ts new file mode 100644 index 0000000000..0ffc999102 --- /dev/null +++ b/ansicolors/ansicolors.d.ts @@ -0,0 +1,4 @@ +declare module "ansicolors" { + var colors: {[index: string]: (s: string) => string;}; + export = colors; +}