generateur_v3/frontend/src/types/auth.type.ts

14 lines
244 B
TypeScript

export type User = {
username: string
firstname: string | null
name: string | null
email: string | null
id: number
rooms: UsersRoom[]
}
export type UsersRoom = {
name: string
id_code: string
admin: boolean
}