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