Coda by Ian Macalinao
    Preparing search index...

    Interface TupleTypeNode<TItems>

    A heterogeneous fixed-length sequence in which each positional slot has its own type.

    interface TupleTypeNode<TItems extends TypeNode[] = TypeNode[]> {
        items: TItems;
        kind: "tupleTypeNode";
    }

    Type Parameters

    Index
    items: TItems

    The type of each positional slot, in order.

    kind: "tupleTypeNode"