From 58dceb923ba0a5f245a410491873dd018671ba66 Mon Sep 17 00:00:00 2001 From: Craig Leinoff Date: Thu, 24 Dec 2015 16:33:00 -0500 Subject: [PATCH 1/2] Removing quotes from easystarjs type definition classname. --- easystarjs/easystarjs.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/easystarjs/easystarjs.d.ts b/easystarjs/easystarjs.d.ts index 7640b1a8b..6755543e3 100755 --- a/easystarjs/easystarjs.d.ts +++ b/easystarjs/easystarjs.d.ts @@ -6,7 +6,7 @@ easystarjs.d.ts may be freely distributed under the MIT license. */ -declare module "easystarjs" +declare module easystarjs { class js { @@ -31,4 +31,4 @@ declare module "easystarjs" } } - \ No newline at end of file + From 3c5aa7c8f870bd345f5d8f62c47762be8d30cc5c Mon Sep 17 00:00:00 2001 From: Craig Leinoff Date: Sat, 26 Dec 2015 18:02:02 -0500 Subject: [PATCH 2/2] Adding ambient external (in addition to ambient internal) module def. --- easystarjs/easystarjs.d.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/easystarjs/easystarjs.d.ts b/easystarjs/easystarjs.d.ts index 6755543e3..4c16236db 100755 --- a/easystarjs/easystarjs.d.ts +++ b/easystarjs/easystarjs.d.ts @@ -3,8 +3,8 @@ // Definitions by: Magnus Gustafsson // Definitions: https://github.com/borisyankov/DefinitelyTyped /* -easystarjs.d.ts may be freely distributed under the MIT license. -*/ + easystarjs.d.ts may be freely distributed under the MIT license. + */ declare module easystarjs { @@ -31,4 +31,6 @@ declare module easystarjs } } - +declare module "easystarjs" { + export = easystarjs; +} \ No newline at end of file