Merge pull request #345 from cbowdon/typescript_ext_mod_support

Added declaration for TypeScript external module support
This commit is contained in:
Leo Horie 2014-11-15 17:05:36 -05:00
commit 55376390ff

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;
}