1import { NotificationChannel } from './NotificationChannelManager.types'; 2 3/** 4 * Fetches information about all known notification channels. 5 * @return A Promise which resolves to an array of channels. On platforms that do not support notification channels, 6 * it will always resolve to an empty array. 7 * @platform android 8 * @header channels 9 */ 10export default async function getNotificationChannelsAsync(): Promise<NotificationChannel[]> { 11 console.debug('Notification channels feature is only supported on Android.'); 12 return []; 13} 14