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