Moved Showdown export to declared module.

This commit is contained in:
Chris Bowdon 2014-09-08 15:29:38 +08:00
parent dffdca514e
commit 01c7e55d21

View File

@ -83,4 +83,6 @@ declare module Showdown {
function forEach<T>(obj: T[], callback: (value: T, index: number, array: T[]) => any): void;
}
export = Showdown;
declare module "showdown" {
export = Showdown;
}