From 688387ff358860384b80dba8e00c0b2be3701e18 Mon Sep 17 00:00:00 2001 From: Christiaan Rakowski Date: Thu, 3 Oct 2013 10:28:47 +0200 Subject: [PATCH] Notification.confirm with buttonLabels array --- phonegap/phonegap.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/phonegap/phonegap.d.ts b/phonegap/phonegap.d.ts index 0e6d00323..5aea7effa 100644 --- a/phonegap/phonegap.d.ts +++ b/phonegap/phonegap.d.ts @@ -478,6 +478,7 @@ declare var Media: { interface Notification { alert(message: string, alertCallback: Function, title?: string, buttonName?: string): void; confirm(message: string, confirmCallback: Function, title?: string, buttonLabels?: string): void; + confirm(message: string, confirmCallback: Function, title?: string, buttonLabels?: Array): void; beep(times: number): void; vibrate(milliseconds: number): void; }