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