expo-notifications
Version:
Provides an API to fetch push notification tokens and to present, schedule, receive, and respond to notifications.
9 lines • 556 B
JavaScript
import { UnavailabilityError } from 'expo-modules-core';
import NotificationChannelGroupManager from './NotificationChannelGroupManager';
export async function deleteNotificationChannelGroupAsync(groupId) {
if (!NotificationChannelGroupManager.deleteNotificationChannelGroupAsync) {
throw new UnavailabilityError('Notifications', 'deleteNotificationChannelGroupAsync');
}
return await NotificationChannelGroupManager.deleteNotificationChannelGroupAsync(groupId);
}
//# sourceMappingURL=deleteNotificationChannelGroupAsync.android.js.map