Skip to content

Instantly share code, notes, and snippets.

@turbod
Created February 11, 2024 12:01
Show Gist options
  • Save turbod/ba2f56dcd67739b89b11411d1d85c95d to your computer and use it in GitHub Desktop.
Save turbod/ba2f56dcd67739b89b11411d1d85c95d to your computer and use it in GitHub Desktop.
type RgbTuple = Tuple<3, number>;
// ^? type RgbTuple = readonly [number, number, number]
const red: RgbTuple = [255, 0, 0];
type Tuple<Length, Type, Acc extends Type[] = []> = Acc["length"] extends Length
? Readonly<Acc>
: Tuple<Length, Type, [...Acc, Type]>;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment