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