expo-notifications
Version:
Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.
20 lines (16 loc) • 891 B
text/typescript
import { UnavailabilityError } from 'expo-modules-core';
import NotificationPresenter from './NotificationPresenterModule';
/**
* Removes notification displayed in the notification tray (Notification Center).
* @param notificationIdentifier The notification identifier, obtained either via `setNotificationHandler` method or in the listener added with `addNotificationReceivedListener`.
* @return A Promise which resolves once the request to dismiss the notification is successfully dispatched to the notifications manager.
* @header dismiss
*/
export default async function dismissNotificationAsync(
notificationIdentifier: string
): Promise<void> {
if (!NotificationPresenter.dismissNotificationAsync) {
throw new UnavailabilityError('Notifications', 'dismissNotificationAsync');
}
return await NotificationPresenter.dismissNotificationAsync(notificationIdentifier);
}