Coda by Ian Macalinao
    Preparing search index...

    Interface StructValueNode<TFields>

    A concrete struct value: a list of named field values.

    interface StructValueNode<
        TFields extends StructFieldValueNode[] = StructFieldValueNode[],
    > {
        fields: TFields;
        kind: "structValueNode";
    }

    Type Parameters

    Index
    fields: TFields

    The named fields of the struct value.

    kind: "structValueNode"