Merge pull request #953 from spacejack/next

Typescript definitions updated for component and withAttr
This commit is contained in:
Isiah Meadows 2016-02-04 00:15:23 -05:00
commit 9798fbb5c9

17
mithril.d.ts vendored
View file

@ -127,6 +127,19 @@ declare module _mithril {
callbackThis: any callbackThis: any
): (e: Event) => any; ): (e: Event) => any;
/**
* Returns a event handler that can be bound to an element, firing with
* the specified property.
*
* @param attributeName Name of the element's attribute to bind to.
* @param property The property to bind.
* @return A function suitable for listening to an event.
*/
withAttr<T>(
attributeName: string,
property: MithrilBasicProperty<T>
) : (e: Event) => any;
/** /**
* @deprecated Use m.mount instead * @deprecated Use m.mount instead
*/ */
@ -561,7 +574,7 @@ declare module _mithril {
* @see MithrilControllerConstructor * @see MithrilControllerConstructor
*/ */
interface MithrilControllerFunction<T extends MithrilController> { interface MithrilControllerFunction<T extends MithrilController> {
(): T; (opts?: any): T;
} }
/** /**
@ -603,7 +616,7 @@ declare module _mithril {
* *
* @see m.component * @see m.component
*/ */
view(ctrl: T): MithrilVirtualElement<T>; view(ctrl?: T, opts?: any): MithrilVirtualElement<T>;
} }
/** /**