feat(local-notifications): added support for foreground option in version 0.9.0-beta.3 of cordova-plugin-local-notifications (#2506)

This commit is contained in:
mino922 2018-05-19 06:15:22 -04:00 committed by Daniel Sogl
parent 58615f1cab
commit ae6e28de88

View File

@ -125,7 +125,7 @@ export interface ILocalNotificationAction {
/**
* Specifies whether the action causes the app to launch in the foreground
*/
launch?: boolean;
foreground?: boolean;
/**
* If the value is 'decline' the action is displayed with special highlighting to indicate that it performs a destructive task
@ -397,6 +397,7 @@ export interface ILocalNotification {
* Set the token for the media session
*/
mediaSession?: string;
}
/**