Tuple of length 1 (AKA Monuple).
Tuple with a single element on it, useful when doing optional types that compare to never.
never
const single: Single<boolean> = [true]; Copy
const single: Single<boolean> = [true];
Type of the single element.
Tuple of length 1 (AKA Monuple).
Remarks
Tuple with a single element on it, useful when doing optional types that compare to
never
.Example