UNPKG

@elemental-design/expo-notifications

Version:
12 lines (8 loc) 503 B
import { UnavailabilityError } from '@unimodules/core'; import NotificationChannelGroupManager from './NotificationChannelGroupManager'; export default async function deleteNotificationChannelAsync(groupId: string): Promise<void> { if (!NotificationChannelGroupManager.deleteNotificationChannelGroupAsync) { throw new UnavailabilityError('Notifications', 'deleteNotificationChannelGroupAsync'); } return await NotificationChannelGroupManager.deleteNotificationChannelGroupAsync(groupId); }