ads-client | Beckhoff TwinCAT ADS client library for Node.js
    Preparing search index...

    Interface RpcMethodCallResult<T, U>

    Return value of invokeRpcMethod()

    interface RpcMethodCallResult<T = any, U = Record<string, any>> {
        outputs: U;
        returnValue?: T;
    }

    Type Parameters

    • T = any

      The type of method return value

    • U = Record<string, any>

      The type of method outputs

    Index

    Properties

    outputs: U

    Method outputs (if any - {} if none)

    returnValue?: T

    Method return value (if any - undefined if none)