Skip to main content
Module

x/enzastdlib/rpc/client.ts>ClientOptions

enzastdlib is a set of TypeScript modules that follow a common design API philosophy aiming at sane defaults and ease-of-use targeting the Deno TypeScript runtime.
Latest
interface ClientOptions
import { type ClientOptions } from "https://deno.land/x/enzastdlib@v0.0.4/rpc/client.ts";

Represents the base options that are passable to a function that returns a Client instance.

Type Parameters

optional
Options extends CallOptions = CallOptions

Properties

readonly
optional
calls: Omit<Options, "signal">

Represents the base call options that are applied to all calls to the remote RPC server.

readonly
optional
id: IDGenerator

Represents a generator for creating ids used to associate calls to the remote RPC server with their responses.