Deep Readonly medium #readonly #object-keys #deep

by Anthony Fu @antfu

Take the Challenge

Implement a generic `TupleToUnion` which covers the values of a tuple to its values union. For example ```ts type Arr = ['1', '2', '3'] const a: TupleToUnion // expected to be '1' | '2' | '3' ``` Back Check out Solutions Share your Solutions