mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
removed obsolete eslint disables fixed a type problem another type problem type check
14 lines
329 B
TypeScript
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
|
|
}
|