1/** 2 * Fetches information about all known notification channel groups. 3 * @return A Promise which resoles to an array of channel groups. On platforms that do not support notification channel groups, 4 * it will always resolve to an empty array. 5 * @platform android 6 * @header channels 7 */ 8export default async function getNotificationChannelGroupsAsync() { 9 console.debug('Notification channels feature is only supported on Android.'); 10 return []; 11} 12//# sourceMappingURL=getNotificationChannelGroupsAsync.js.map