interface RpcRequest<T, U> {
    jsonrpc: "2.0";
    id:
        | undefined
        | null
        | string
        | number;
    method: T;
    params: U;
}

Type Parameters

  • T extends string
  • U

Hierarchy (view full)

Properties

Properties

jsonrpc: "2.0"
id:
    | undefined
    | null
    | string
    | number
method: T
params: U