Tuple
Tuple<
A,B> = readonly [A,B]
Defined in: Core/Tuple.ts:23
Tuple<A, B> represents a pair of two values that are always both present.
It is a typed alias for readonly [A, B].
Use Tuple when two values always travel together through a pipeline and you want to transform either or both sides without destructuring.
Type Parameters
Section titled “Type Parameters”A
B