Files
marianesaldana 80dbd947e5 Initial commit
2026-05-23 08:59:34 -06:00

21 lines
859 B
TypeScript

import { UnavailabilityError } from 'expo-modules-core';
import NotificationScheduler from './NotificationScheduler';
import { NotificationRequest } from './Notifications.types';
import { mapNotificationRequest } from './utils/mapNotificationResponse';
/**
* Fetches information about all scheduled notifications.
* @return Returns a Promise resolving to an array of objects conforming to the [`Notification`](#notification) interface.
* @header schedule
*/
export default async function getAllScheduledNotificationsAsync(): Promise<NotificationRequest[]> {
if (!NotificationScheduler.getAllScheduledNotificationsAsync) {
throw new UnavailabilityError('Notifications', 'getAllScheduledNotificationsAsync');
}
return (await NotificationScheduler.getAllScheduledNotificationsAsync()).map((request) =>
mapNotificationRequest(request)
);
}