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