From 714bc463426d5c41f9238bc0efe9ebff313b7574 Mon Sep 17 00:00:00 2001 From: Elian Cordoba <34920585+ElianCordoba@users.noreply.github.com> Date: Tue, 13 Feb 2018 12:45:53 -0300 Subject: [PATCH] Update index.ts Added missing descriptions taken from the plugin repo README. --- src/@ionic-native/plugins/background-mode/index.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/@ionic-native/plugins/background-mode/index.ts b/src/@ionic-native/plugins/background-mode/index.ts index 2d715929..fc54d6a3 100644 --- a/src/@ionic-native/plugins/background-mode/index.ts +++ b/src/@ionic-native/plugins/background-mode/index.ts @@ -23,6 +23,9 @@ export interface BackgroundModeConfiguration { */ icon?: string; + /** + * Set the background color of the notification circle + */ color?: string; /** @@ -30,6 +33,9 @@ export interface BackgroundModeConfiguration { */ resume?: boolean; + /** + * When set to false makes the notifications visible on lockscreen (Android 5.0+) + */ hidden?: boolean; bigText?: boolean;