Coda by Ian Macalinao
    Preparing search index...

    Interface MapTypeNode<TKey, TValue, TCount>

    A keyed map. The key and value types are described by their respective type nodes; the entry count is determined by a count strategy.

    interface MapTypeNode<
        TKey extends TypeNode = TypeNode,
        TValue extends TypeNode = TypeNode,
        TCount extends CountNode = CountNode,
    > {
        count: TCount;
        key: TKey;
        kind: "mapTypeNode";
        value: TValue;
    }

    Type Parameters

    Index
    count: TCount

    The strategy used to determine the number of entries.

    key: TKey

    The type of each entry key.

    kind: "mapTypeNode"
    value: TValue

    The type of each entry value.