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.
This commit is contained in:
Bobby Powers
2015-09-01 09:47:53 -04:00
parent af76bf4602
commit 8f6209f828
+4
View File
@@ -47,3 +47,7 @@ interface MustacheStatic {
}
declare var Mustache: MustacheStatic;
declare module 'mustache' {
export = Mustache;
}