@elemental-design/expo-notifications
Version:
9 lines • 522 B
JavaScript
import { UnavailabilityError } from '@unimodules/core';
import NotificationChannelManager from './NotificationChannelManager';
export default async function deleteNotificationChannelAsync(channelId) {
if (!NotificationChannelManager.deleteNotificationChannelAsync) {
throw new UnavailabilityError('Notifications', 'deleteNotificationChannelAsync');
}
return await NotificationChannelManager.deleteNotificationChannelAsync(channelId);
}
//# sourceMappingURL=deleteNotificationChannelAsync.android.js.map