Algorand TypeScript
    Preparing search index...

    Type Alias TypedApplicationCallFields<TArgs>

    TypedApplicationCallFields: Omit<ApplicationCallFields, "appArgs"> & (
        TArgs extends []
            ? { args?: TypedApplicationArgs<TArgs> }
            : { args: TypedApplicationArgs<TArgs> }
    )

    Application call fields with appArgs replaced with an args property that is strongly typed to the actual arguments for the given application call.

    Type Parameters

    • TArgs