Interface UserInfo

interface UserInfo {
    id: string;
    isAdmin?: boolean;
    name: string;
}

Properties

Properties

id: string
isAdmin?: boolean
name: string