1/** 2 * Removes the notification channel. 3 * @param channelId The channel identifier. 4 * @return A Promise which resolving once the channel is removed (or if there was no channel for given identifier). 5 * @platform android 6 * @header channels 7 */ 8export default async function deleteNotificationChannelAsync(channelId: string): Promise<void> { 9 console.debug('Notification channels feature is only supported on Android.'); 10} 11