update typescript defs to support broader MithrilAttributes

This commit is contained in:
Max Lang 2016-01-11 17:09:38 -05:00
parent e32f37c523
commit d770f29e39

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