Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import { BaseEntity, FileModel, Nullable } from '@/shared/@types'
import { UserRole } from '@/entities/user'
import { NotificationType } from '@/entities/notification'
export interface User extends BaseEntity {
name: string
publicName: string
firstName: string
lastName: string
middleName: string
avatar: Nullable<FileModel>
experience: number
role: UserRole
displayName: string
notificationTypes: NotificationType[]
notificationMethodSse: boolean
notificationMethodEmail: boolean
mercureJwt: string
email?: string
columnsConfig: FieldMetadata[]
}
export interface FieldMetadata {
field: string
index: number
disabled?: boolean
}
|