From 461def4a53233621a6ef8d8bc8b2eed77ed98c4a Mon Sep 17 00:00:00 2001 From: Bart van der Schoor Date: Thu, 27 Feb 2014 22:35:19 +0100 Subject: [PATCH] added definitions for test-module amaze --- test-module/test-addon.ts | 5 +++++ test-module/test-module.d.ts | 6 +++--- 2 files changed, 8 insertions(+), 3 deletions(-) create mode 100644 test-module/test-addon.ts diff --git a/test-module/test-addon.ts b/test-module/test-addon.ts new file mode 100644 index 000000000..14c5ba0d6 --- /dev/null +++ b/test-module/test-addon.ts @@ -0,0 +1,5 @@ +/// + +declare module 'test-addon' { + export function addon(): Such; +} diff --git a/test-module/test-module.d.ts b/test-module/test-module.d.ts index e73a9981c..4ec2bdda4 100644 --- a/test-module/test-module.d.ts +++ b/test-module/test-module.d.ts @@ -1,6 +1,6 @@ +interface Such { + amaze(): void; +} declare module 'test-module' { - interface Such { - amaze(): void; - } export function wow(): Such; }