Home
last modified time | relevance | path

Searched refs:getLastNotificationResponseAsync (Results 1 – 25 of 25) sorted by relevance

/expo/packages/expo-notifications/build/
H A DNotificationsEmitter.js89 export async function getLastNotificationResponseAsync() { function
90 if (!NotificationsEmitterModule.getLastNotificationResponseAsync) {
93 return await NotificationsEmitterModule.getLastNotificationResponseAsync();
H A DNotificationsEmitterModule.types.d.ts4 getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>; property
H A DNotificationsEmitter.d.ts74 export declare function getLastNotificationResponseAsync(): Promise<NotificationResponse | null>;
H A DuseLastNotificationResponse.js54 NotificationsEmitterModule.getLastNotificationResponseAsync?.().then((response) => {
H A DNotificationsEmitterModule.types.js.map1 …e NotificationsEmitterModule extends ProxyNativeModule {\n getLastNotificationResponseAsync?: () …
H A DNotificationsEmitter.js.map1getLastNotificationResponseAsync(): Promise<NotificationResponse | null> {\n if (!NotificationsEm…
H A DuseLastNotificationResponse.js.map1getLastNotificationResponseAsync()` instead.\n *\n * @return The hook may return one of these thre…
/expo/packages/expo-notifications/src/
H A DNotificationsEmitter.ts106 export async function getLastNotificationResponseAsync(): Promise<NotificationResponse | null> { function
107 if (!NotificationsEmitterModule.getLastNotificationResponseAsync) {
110 return await NotificationsEmitterModule.getLastNotificationResponseAsync();
H A DNotificationsEmitterModule.types.ts6 getLastNotificationResponseAsync?: () => Promise<NotificationResponse | null>; property
H A DuseLastNotificationResponse.ts61 NotificationsEmitterModule.getLastNotificationResponseAsync?.().then((response) => {
/expo/android/versioned-abis/expoview-abi48_0_0/src/main/java/abi48_0_0/expo/modules/notifications/notifications/emitting/
H A DNotificationsEmitter.java54 public void getLastNotificationResponseAsync(Promise promise) { in getLastNotificationResponseAsync() method in NotificationsEmitter
/expo/android/versioned-abis/expoview-abi47_0_0/src/main/java/abi47_0_0/expo/modules/notifications/notifications/emitting/
H A DNotificationsEmitter.java54 public void getLastNotificationResponseAsync(Promise promise) { in getLastNotificationResponseAsync() method in NotificationsEmitter
/expo/android/versioned-abis/expoview-abi49_0_0/src/main/java/abi49_0_0/expo/modules/notifications/notifications/emitting/
H A DNotificationsEmitter.java54 public void getLastNotificationResponseAsync(Promise promise) { in getLastNotificationResponseAsync() method in NotificationsEmitter
/expo/packages/expo-notifications/ios/EXNotifications/Notifications/Emitter/
H A DEXNotificationsEmitter.m26 EX_EXPORT_METHOD_AS(getLastNotificationResponseAsync, category
/expo/ios/versioned/sdk47/EXNotifications/EXNotifications/Notifications/Emitter/
H A DABI47_0_0EXNotificationsEmitter.m26 ABI47_0_0EX_EXPORT_METHOD_AS(getLastNotificationResponseAsync, category
/expo/ios/versioned/sdk49/EXNotifications/EXNotifications/Notifications/Emitter/
H A DABI49_0_0EXNotificationsEmitter.m26 ABI49_0_0EX_EXPORT_METHOD_AS(getLastNotificationResponseAsync, category
/expo/ios/versioned/sdk48/EXNotifications/EXNotifications/Notifications/Emitter/
H A DABI48_0_0EXNotificationsEmitter.m26 ABI48_0_0EX_EXPORT_METHOD_AS(getLastNotificationResponseAsync, category
/expo/docs/pages/versions/unversioned/sdk/
H A Dnotifications.mdx222 Notifications.getLastNotificationResponseAsync() /* @end */
281 const response = await Notifications.getLastNotificationResponseAsync();
/expo/docs/pages/versions/v49.0.0/sdk/
H A Dnotifications.mdx222 Notifications.getLastNotificationResponseAsync() /* @end */
281 const response = await Notifications.getLastNotificationResponseAsync();
/expo/docs/pages/versions/v48.0.0/sdk/
H A Dnotifications.mdx217 const response = await Notifications.getLastNotificationResponseAsync();
/expo/apps/test-suite/tests/
H A DNotifications.js1642 t.expect(event).toEqual(await Notifications.getLastNotificationResponseAsync());
/expo/docs/pages/versions/v46.0.0/sdk/
H A Dnotifications.mdx508 > If you don't want to use a hook, you can use `Notifications.getLastNotificationResponseAsync()` i…
655 const response = await Notifications.getLastNotificationResponseAsync();
/expo/docs/pages/versions/v47.0.0/sdk/
H A Dnotifications.mdx508 > If you don't want to use a hook, you can use `Notifications.getLastNotificationResponseAsync()` i…
655 const response = await Notifications.getLastNotificationResponseAsync();
/expo/packages/expo-notifications/
H A DCHANGELOG.md228 - Expose `getLastNotificationResponseAsync` method (non-hook version of `useLastNotificationRespons…
H A DREADME.md539 > If you don't want to use a hook, you can use `Notifications.getLastNotificationResponseAsync()` i…