UNPKG

@elemental-design/expo-notifications

Version:
13 lines (11 loc) 386 B
import { NotificationChannelGroup, NotificationChannelGroupInput, } from './NotificationChannelGroupManager.types'; export default async function setNotificationChannelGroupAsync( groupId: string, group: NotificationChannelGroupInput ): Promise<NotificationChannelGroup | null> { console.debug('Notification channels feature is only supported on Android.'); return null; }