type TupIndices<T,C,R>
Type used to indicate an object containing matches for tuple indices.
Definition
type TupIndices<T, C, R> = {
[K in
Tuple.KeysOf
<C>]?:
Match.Entry
<T[K & keyof T], C[K], T, R>;
} & NotIterable;