Merge pull request #14186 from doxiaodong/simplemde

add typescript module export
This commit is contained in:
Daniel Rosenwasser
2017-01-30 10:33:28 -08:00
committed by GitHub

View File

@@ -127,4 +127,7 @@ declare class SimpleMDE {
static toggleFullScreen: (editor: SimpleMDE) => void;
static undo: (editor: SimpleMDE) => void;
static redo: (editor: SimpleMDE) => void;
}
}
export = SimpleMDE;
export as namespace SimpleMDE;