From 01c7e55d215c53275cf64d021f5b02b72e9fc6cf Mon Sep 17 00:00:00 2001 From: Chris Bowdon Date: Mon, 8 Sep 2014 15:29:38 +0800 Subject: [PATCH] Moved Showdown export to declared module. --- showdown/showdown.d.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/showdown/showdown.d.ts b/showdown/showdown.d.ts index 35302d8a9..278137050 100644 --- a/showdown/showdown.d.ts +++ b/showdown/showdown.d.ts @@ -83,4 +83,6 @@ declare module Showdown { function forEach(obj: T[], callback: (value: T, index: number, array: T[]) => any): void; } -export = Showdown; +declare module "showdown" { + export = Showdown; +}