type Tup<T,C,R>
A type defining the allowed patch values for tuples.
Definition
type Tup<T, C, R> = {
[K in Tuple.KeysOf<T>]?: Patch.Entry<T[K & keyof T], C[K & keyof C], T, R>;
} & NotIterable;
type Tup<T,C,R>A type defining the allowed patch values for tuples.
type Tup<T, C, R> = {
[K in Tuple.KeysOf<T>]?: Patch.Entry<T[K & keyof T], C[K & keyof C], T, R>;
} & NotIterable;