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
commit c55998c5b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
} }
/** /**