Merge pull request #7098 from dmoonfire/update-bigjs

Added module declaration so Typescript will emit require statement.
This commit is contained in:
Steve Ognibene
2015-12-09 16:25:28 -05:00
+5
View File
@@ -200,4 +200,9 @@ declare module BigJsLibrary {
}
}
declare module "big.js" {
var bigjs : BigJsLibrary.BigJS;
export = bigjs;
}
declare var Big: BigJsLibrary.BigJS;