1import {
2  NotificationChannelGroup,
3  NotificationChannelGroupInput,
4} from './NotificationChannelGroupManager.types';
5
6/**
7 * Assigns the channel group configuration to a channel group of a specified name (creating it if need be).
8 * @param groupId The channel group's identifier.
9 * @param group Object representing the channel group configuration.
10 * @return A `Promise` resolving to the object (of type [`NotificationChannelGroup`](#notificationchannelgroup))
11 * describing the modified channel group or to `null` if the platform does not support notification channels.
12 * @platform android
13 * @header channels
14 */
15export default async function setNotificationChannelGroupAsync(
16  groupId: string,
17  group: NotificationChannelGroupInput
18): Promise<NotificationChannelGroup | null> {
19  console.debug('Notification channels feature is only supported on Android.');
20  return null;
21}
22