Type alias ClientDefinition<Client>

ClientDefinition<Client>: {
    liveClient: (() => Promise<Client>);
}

Wrapper for a defined client.

Type Parameters

Type declaration

  • liveClient: (() => Promise<Client>)

    Method that constructs or retrieves the client.