From ef95fea38b7bae256d81bd3054cab1781ab8ee2f Mon Sep 17 00:00:00 2001 From: Joel Mueller Date: Sat, 24 Jan 2015 10:46:52 -0600 Subject: [PATCH] Fixing indentation to be consistent. --- mithril/mithril.d.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/mithril/mithril.d.ts b/mithril/mithril.d.ts index faee830c8d..d106025ba5 100644 --- a/mithril/mithril.d.ts +++ b/mithril/mithril.d.ts @@ -8,13 +8,13 @@ interface MithrilStatic { (selector: string, attributes: Object, children?: any): MithrilVirtualElement; (selector: string, children?: any): MithrilVirtualElement; - prop(value?: T): (value?: T) => T; + prop(value?: T): (value?: T) => T; withAttr(property: string, callback: (value: any) => void): (e: Event) => any; module(rootElement: Node, module: MithrilModule): void; trust(html: string): String; render(rootElement: Element, children?: any): void; render(rootElement: HTMLDocument, children?: any): void; - redraw: MithrilRedraw; + redraw: MithrilRedraw; route(rootElement: Element, defaultRoute: string, routes: { [key: string]: MithrilModule }): void; route(rootElement: HTMLDocument, defaultRoute: string, routes: { [key: string]: MithrilModule }): void; route(path: string, params?: any, shouldReplaceHistory?: boolean): void; @@ -28,8 +28,8 @@ interface MithrilStatic { } interface MithrilRedraw { - (): void; - strategy: (value?: string) => string; + (): void; + strategy: (value?: string) => string; } interface MithrilVirtualElement {