Interface for making requests to the User API.

interface IUserAPIClient {
    serverSettings: ServerConnection.ISettings;
    get(): Promise<IUser>;
}

Implemented by

Properties

Methods

Properties

serverSettings: ServerConnection.ISettings

The server settings for the client.

Methods