utopia-ui/types/UserItem.d.ts
Ulf Gebhardt 20e8203b26
make NavBar typesafe
removed obsolete eslint disables

fixed a type problem

another type problem

type check
2024-12-19 12:17:51 +01:00

14 lines
329 B
TypeScript

import type { Profile } from './Profile'
export interface UserItem {
id?: string
// eslint-disable-next-line @typescript-eslint/no-explicit-any
role?: any
email?: string
password?: string
profile?: Profile
first_name?: string
// eslint-disable-next-line @typescript-eslint/no-explicit-any
[key: string]: any
}