AutoBE
    Preparing search index...

    Interface AutoBeRealizeArrayExpression

    Array literal of element expressions.

    Used for list-shaped payloads; each element is an expression node. Prefer AutoBeRealizeMapExpression when the array is derived by transforming a source collection rather than spelled out element by element.

    interface AutoBeRealizeArrayExpression {
        items: AutoBeRealizeExpression[];
        type: "array";
    }
    Index

    Properties

    Properties

    Element expressions in order.

    type: "array"

    Type discriminator.