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