frontend/src/modelTypes/IUserSettings.ts

14 lines
372 B
TypeScript

import type {IAbstract} from './IAbstract'
import type {IList} from './IList'
export interface IUserSettings extends IAbstract {
name: string
emailRemindersEnabled: boolean
discoverableByName: boolean
discoverableByEmail: boolean
overdueTasksRemindersEnabled: boolean
defaultListId: undefined | IList['id']
weekStart: 0 | 1 | 2 | 3 | 4 | 5 | 6
timezone: string
}