Interface UserItem

interface UserItem {
    access_token?: string;
    email?: string;
    first_name?: string;
    id?: string;
    password?: string;
    profile?: Profile;
    role?: any;
    [key: string]: any;
}

Indexable

  • [key: string]: any

Properties

access_token?: string
email?: string
first_name?: string
id?: string
password?: string
profile?: Profile
role?: any