feat(local-notifications): added a new param to specify if the notification will be silent

This commit is contained in:
Pedro Plasencia 2018-01-18 10:47:04 -04:00
parent 9ebd92ecb9
commit 6e58192630

5
src/@ionic-native/plugins/local-notifications/index.ts Normal file → Executable file
View File

@ -94,6 +94,11 @@ export interface ILocalNotification {
* Notification priority. * Notification priority.
*/ */
priority?: number; priority?: number;
/**
* Is a silent notification
*/
silent?: boolean;
} }
/** /**