From e5b80ca2c3eada0dc3c338c9c9b5bf5f99db0400 Mon Sep 17 00:00:00 2001 From: vvakame Date: Sun, 8 Dec 2013 23:51:35 +0900 Subject: [PATCH] Fixed titanium error on TypeScript 0.9.5 --- titanium/titanium.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/titanium/titanium.d.ts b/titanium/titanium.d.ts index f4346e5792..5ebe930241 100644 --- a/titanium/titanium.d.ts +++ b/titanium/titanium.d.ts @@ -460,7 +460,7 @@ declare module Ti { } export interface DocumentViewer extends Ti.UI.View { setUrl (url: string) : void; - show (animated: boolean, view: any) : void; + show(animated?: boolean, view?: any) : void; } export interface Popover extends Ti.UI.View { arrowDirection : number;