Merge pull request #929 from maxlang/next

update typescript defs to support more accurate MithrilAttributes interface
This commit is contained in:
Leo Horie 2016-01-12 16:04:20 -05:00
commit 62dd3d12ce

6
mithril.d.ts vendored
View file

@ -534,6 +534,12 @@ declare module _mithril {
* @see MithrilElementConfig
*/
config?: MithrilElementConfig;
/**
* Any other virtual element properties including attributes and
* event handlers
*/
[property: string]: any;
}
/**