Files
maher 511fad8199
Build / run (push) Has been cancelled
Initial commit
2026-05-14 13:42:10 +02:00

16 lines
335 B
TypeScript
Executable File

export interface NotificationSubscription {
id?: number;
name: string;
notif_id: string;
permissions?: string[];
channels: {[key: string]: boolean};
}
export interface NotificationSubscriptionGroup {
group_name: string;
subscriptions: Pick<
NotificationSubscription,
'name' | 'notif_id' | 'permissions'
>[];
}