From 8f6209f82843e9697b36e79397fe1e83c428f328 Mon Sep 17 00:00:00 2001 From: Bobby Powers Date: Tue, 1 Sep 2015 09:47:53 -0400 Subject: [PATCH] mustache: declare mustache module Modern mustache defines the 'mustache' module for use under both NPM and bower. Define that here so we can use require('mustache') in TypeScript without complaint. --- mustache/mustache.d.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/mustache/mustache.d.ts b/mustache/mustache.d.ts index 3f0a83dfa..f130b791e 100644 --- a/mustache/mustache.d.ts +++ b/mustache/mustache.d.ts @@ -47,3 +47,7 @@ interface MustacheStatic { } declare var Mustache: MustacheStatic; + +declare module 'mustache' { + export = Mustache; +}