From 6e58192630b2d58fa20db0c7cf5a99e93f43b8d4 Mon Sep 17 00:00:00 2001 From: Pedro Plasencia Date: Thu, 18 Jan 2018 10:47:04 -0400 Subject: [PATCH] feat(local-notifications): added a new param to specify if the notification will be silent --- src/@ionic-native/plugins/local-notifications/index.ts | 5 +++++ 1 file changed, 5 insertions(+) mode change 100644 => 100755 src/@ionic-native/plugins/local-notifications/index.ts diff --git a/src/@ionic-native/plugins/local-notifications/index.ts b/src/@ionic-native/plugins/local-notifications/index.ts old mode 100644 new mode 100755 index bef5c4fda..41f9cba64 --- a/src/@ionic-native/plugins/local-notifications/index.ts +++ b/src/@ionic-native/plugins/local-notifications/index.ts @@ -94,6 +94,11 @@ export interface ILocalNotification { * Notification priority. */ priority?: number; + + /** + * Is a silent notification + */ + silent?: boolean; } /**