Interface JSONRpcResultError<T>

interface JSONRpcResultError<T> {
    code: JSONRPCErrorCode;
    data?: JSONRpcErrorData<T>;
    message: string;
}

Type Parameters

Properties

Properties

message: string