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