Coda by Ian Macalinao
    Preparing search index...

    Interface SetTypeNode<TItem, TCount>

    A unique-valued collection. The item type is defined by item; the size is determined by the count strategy.

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

    Type Parameters

    Index
    count: TCount

    The strategy used to determine the number of items.

    item: TItem

    The type of each item in the set.

    kind: "setTypeNode"