From 7d58f574a7faf3caac3ccdfb10576199949b879c Mon Sep 17 00:00:00 2001 From: Steve Ognibene Date: Mon, 7 Dec 2015 18:53:12 -0600 Subject: [PATCH] Added module declaration so Typescript will emit require statement. --- big.js/big.js.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/big.js/big.js.d.ts b/big.js/big.js.d.ts index d4ca239e3..2ad360a56 100644 --- a/big.js/big.js.d.ts +++ b/big.js/big.js.d.ts @@ -200,4 +200,9 @@ declare module BigJsLibrary { } } +declare module "big.js" { + var bigjs : BigJsLibrary.BigJS; + export = bigjs; +} + declare var Big: BigJsLibrary.BigJS;