@elemental-design/expo-notifications
Version:
15 lines (12 loc) • 353 B
text/typescript
import { NotificationChannel } from './NotificationChannelManager.types';
export interface NotificationChannelGroup {
id: string;
name: string | null;
description?: string | null;
isBlocked?: boolean;
channels: NotificationChannel[];
}
export interface NotificationChannelGroupInput {
name: string | null;
description?: string | null;
}