Added declaration for TypeScript external module support

This commit is contained in:
Chris Bowdon 2014-11-15 11:02:44 +00:00
parent 940289773e
commit 2ec0e5e0c2

4
mithril.d.ts vendored
View file

@ -63,3 +63,7 @@ interface MithrilXHROptions {
declare var Mithril: MithrilStatic;
declare var m: MithrilStatic;
declare module 'mithril' {
export = MithrilStatic;
}