@elemental-design/expo-notifications
Version:
9 lines (7 loc) • 310 B
text/typescript
import { NotificationChannelGroup } from './NotificationChannelGroupManager.types';
export default async function getNotificationChannelGroupAsync(
groupId: string
): Promise<NotificationChannelGroup | null> {
console.debug('Notification channels feature is only supported on Android.');
return null;
}