interface JsonRpcSuccess<T> {
    id: JsonRpcId;
    jsonrpc: "2.0";
    result: Maybe<T>;
}

Type Parameters

  • T

Hierarchy (view full)

Properties

Properties

jsonrpc: "2.0"
result: Maybe<T>

Generated using TypeDoc