Interface User

An implementation to fetch user related data.

interface User {
    client: Client;
    username: string;
    fetchProfile(): Promise<undefined | ProfileUser>;
}

Hierarchy (view full)

Implemented by

Properties

Methods

Properties

client: Client
username: string

The username of the user.

Methods

Generated using TypeDoc