Interface StrippedUser

interface StrippedUser {
    role?: string;
    tokens?: {
        token: string;
    }[];
    username: string;
}

Properties

role?: string
tokens?: {
    token: string;
}[]

Type declaration

  • token: string
username: string