1import { UnavailabilityError } from 'expo-modules-core'; 2import NotificationChannelGroupManager from './NotificationChannelGroupManager'; 3export default async function getNotificationChannelGroupAsync(groupId) { 4 if (!NotificationChannelGroupManager.getNotificationChannelGroupAsync) { 5 throw new UnavailabilityError('Notifications', 'getNotificationChannelGroupAsync'); 6 } 7 return await NotificationChannelGroupManager.getNotificationChannelGroupAsync(groupId); 8} 9//# sourceMappingURL=getNotificationChannelGroupAsync.android.js.map