From e10d744e7ba82b287ff25acd663b02bc6b796005 Mon Sep 17 00:00:00 2001 From: Ibrahim Hadeed Date: Mon, 25 Apr 2016 05:32:36 -0400 Subject: [PATCH] fix(localnotifications): options can be an array --- src/plugins/localnotifications.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/plugins/localnotifications.ts b/src/plugins/localnotifications.ts index a54ba2c5..98abe5d1 100644 --- a/src/plugins/localnotifications.ts +++ b/src/plugins/localnotifications.ts @@ -57,7 +57,7 @@ export class LocalNotifications { @Cordova({ sync: true }) - static schedule(options? : Notification) : void {} + static schedule(options? : Notification|Array) : void {} /** * Updates a previously scheduled notification. Must include the id in the options parameter.