From 586c2ad06415d776cfedc8b39791aeddd1a0e892 Mon Sep 17 00:00:00 2001 From: Kyle Kurtz Date: Thu, 5 Sep 2024 15:56:42 -0500 Subject: [PATCH] Add expoPushToken to ExpoPushErrorReceipt type (#74) --- src/ExpoClient.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ExpoClient.ts b/src/ExpoClient.ts index 7a16652..7f2a939 100644 --- a/src/ExpoClient.ts +++ b/src/ExpoClient.ts @@ -418,6 +418,7 @@ export type ExpoPushErrorReceipt = { | 'MessageTooBig' | 'ProviderError'; }; + expoPushToken?: string; // Internal field used only by developers working on Expo __debug?: any; };