Interface Whoami

interface Whoami {
    avatar: null | string;
    isAdmin: boolean;
    isMockUser: boolean;
    isPremium: null | boolean;
    isSignedIn: boolean;
    isSuperuser: boolean;
    isTranslator: boolean;
    permissions: string[];
    userId: null | number;
    username: string;
}

Properties

avatar: null | string
isAdmin: boolean
isMockUser: boolean
isPremium: null | boolean
isSignedIn: boolean
isSuperuser: boolean
isTranslator: boolean
permissions: string[]
userId: null | number
username: string

Generated using TypeDoc