feat(airship): add isForeground to push received events (#4763)

* add onBackgroundPushReceived

* add isForeground to PushReceivedEvent
This commit is contained in:
Maxim Belov
2024-07-11 09:00:55 +03:00
committed by GitHub
parent 07bf7a96fc
commit 4e933e8e93

View File

@@ -116,6 +116,7 @@ export interface PushTokenReceivedEvent {
*/
export interface PushReceivedEvent {
pushPayload: PushPayload;
isForeground: boolean;
}
/**