Type alias HttpClient

HttpClient: {
    extend: (<const client, const extendedHttpClient>(fn) => client & extendedHttpClient);
    request: (<T>(params) => Promise<T>);
}

Base interface for the Http client

Type declaration