Coda by Ian Macalinao
    Preparing search index...

    Interface ArrayTypeNode<TItem, TCount>

    A homogeneous list of items. The item type is defined by item; the length is determined by the count strategy.

    interface ArrayTypeNode<
        TItem extends TypeNode = TypeNode,
        TCount extends CountNode = CountNode,
    > {
        count: TCount;
        item: TItem;
        kind: "arrayTypeNode";
    }

    Type Parameters

    Index
    count: TCount

    The strategy used to determine the number of items.

    item: TItem

    The type of each item in the array.

    kind: "arrayTypeNode"