feat(local-notifications) add silent configuration parameter

feat(local-notifications) add silent configuration parameter
This commit is contained in:
Daniel Sogl
2018-03-17 00:39:58 +01:00
committed by GitHub
+5
View File
@@ -94,6 +94,11 @@ export interface ILocalNotification {
* Notification priority.
*/
priority?: number;
/**
* Is a silent notification
*/
silent?: boolean;
}
/**