1/** 2 * Assigns the channel group configuration to a channel group of a specified name (creating it if need be). 3 * @param groupId The channel group's identifier. 4 * @param group Object representing the channel group configuration. 5 * @return A `Promise` resolving to the object (of type [`NotificationChannelGroup`](#notificationchannelgroup)) 6 * describing the modified channel group or to `null` if the platform does not support notification channels. 7 * @platform android 8 * @header channels 9 */ 10export default async function setNotificationChannelGroupAsync(groupId, group) { 11 console.debug('Notification channels feature is only supported on Android.'); 12 return null; 13} 14//# sourceMappingURL=setNotificationChannelGroupAsync.js.map