import { ReducedUser } from "."; export interface NotificationSettings { _id: string; user: ReducedUser; organizationInvitationEmail: boolean; systemNotifications: boolean; cosmoNotifications: boolean; } export type NotificationSettingsPatch = Partial>;