Coda by Ian Macalinao
    Preparing search index...

    Interface StructTypeNode<TFields>

    A composite type made of an ordered list of named fields. Fields are encoded and decoded in declaration order.

    interface StructTypeNode<
        TFields extends StructFieldTypeNode[] = StructFieldTypeNode[],
    > {
        fields: TFields;
        kind: "structTypeNode";
    }

    Type Parameters

    Index
    fields: TFields

    The fields of the struct, in declaration order.

    kind: "structTypeNode"