Algorand TypeScript
    Preparing search index...

    Type Alias TypedApplicationCallResponse<TReturn>

    TypedApplicationCallResponse: TReturn extends void
        ? { itxn: ApplicationCallInnerTxn }
        : { itxn: ApplicationCallInnerTxn; returnValue: TReturn }

    The response type of a typed application call. Includes the raw itxn result object and the parsed ABI return value if applicable.

    Type Parameters

    • TReturn