From 22795fb59bd8f08ed277cb4421fbb6b4662d6484 Mon Sep 17 00:00:00 2001 From: Leo Horie Date: Mon, 19 Jan 2015 23:27:47 -0500 Subject: [PATCH] update ts file --- mithril.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mithril.d.ts b/mithril.d.ts index 1b149107..5bdcff5b 100644 --- a/mithril.d.ts +++ b/mithril.d.ts @@ -5,7 +5,7 @@ interface MithrilStatic { (selector: string, children?: any): MithrilVirtualElement; prop(value?: any): (value?: any) => any; withAttr(property: string, callback: (value: any) => void): (e: Event) => any; - module(rootElement: Node, module: MithrilModule): Object; + module(rootElement: Node, module?: MithrilModule): Object; trust(html: string): String; render(rootElement: Element, children?: any): void; render(rootElement: HTMLDocument, children?: any): void;