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
View File
@@ -94,6 +94,11 @@ export interface ILocalNotification {
* Notification priority.
*/
priority?: number;
/**
* Is a silent notification
*/
silent?: boolean;
}
/**