interface RawUser {
    globalEditor?: boolean;
    id: number;
    isStaff?: boolean;
    rank: UserRank;
    userName: null | string;
}

Properties

globalEditor?: boolean
id: number
isStaff?: boolean
rank: UserRank
userName: null | string