Return value of invokeRpcMethod()

interface RpcMethodCallResult<T, U> {
    outputs: U;
    returnValue?: T;
}

Type Parameters

  • T = any

    The type of method return value

  • U = Record<string, any>

    The type of method outputs

Properties

outputs: U

Method outputs (if any - {} if none)

returnValue?: T

Method return value (if any - undefined if none)