Either a UserClient or an object with a client and network
const userClient = UserClient.fromNetwork('test');const config: UserClientOrClientAndNetwork = userClient;const alternativeConfig: UserClientOrClientAndNetwork = { client: userClient.client, network: userClient.network}; Copy
const userClient = UserClient.fromNetwork('test');const config: UserClientOrClientAndNetwork = userClient;const alternativeConfig: UserClientOrClientAndNetwork = { client: userClient.client, network: userClient.network};
Either a UserClient or an object with a client and network