11 lines
197 B
TypeScript
11 lines
197 B
TypeScript
import type { Employee } from './employee'
|
|
|
|
export type User = {
|
|
id: number
|
|
username: string
|
|
roles: string[]
|
|
isLocked: boolean
|
|
hasLeaveRecapAccess: boolean
|
|
employee?: Employee | null
|
|
}
|