AutoBE
    Preparing search index...

    Interface AutoBeRealizeCoalesceExpression

    Null-coalescing chain: the first non-null/undefined item wins (a ?? b ?? c).

    Use for fallback values, e.g. an optional input field backed by a default.

    interface AutoBeRealizeCoalesceExpression {
        items: AutoBeRealizeExpression[];
        type: "coalesce";
    }
    Index

    Properties

    Properties

    Candidates in priority order; the first defined one is used.

    type: "coalesce"

    Type discriminator.