10 lines
310 B
TypeScript
10 lines
310 B
TypeScript
import { EmailNotificationScheduleType } from './types';
|
|
|
|
export interface INotificationPreferences {
|
|
emailNotificationType: EmailNotificationScheduleType;
|
|
emailNotifications: string[];
|
|
emailNotificationsEnabled: boolean;
|
|
inAppNotifications: string[];
|
|
inAppNotificationsEnabled: boolean;
|
|
}
|