1import { NotificationChannel } from './NotificationChannelManager.types';
2
3/**
4 * Fetches information about a single notification channel.
5 * @param channelId The channel's identifier.
6 * @return A Promise which resolves to the channel object (of type [`NotificationChannel`](#notificationchannel)) or to `null`
7 * if there was no channel found for this identifier. On platforms that do not support notification channels, it will always resolve to `null`.
8 * @platform android
9 * @header channels
10 */
11export default async function getNotificationChannelAsync(
12  channelId: string
13): Promise<NotificationChannel | null> {
14  console.debug('Notification channels feature is only supported on Android.');
15  return null;
16}
17