import { type TupleToUnion } from "https://deno.land/x/domain_functions@v3.0.0/src/index.ts";
Converts a tuple type to a union type.
Examples
type MyTuple = [string, number]
type MyUnion = TupleToUnion
// ^? string | number
type MyTuple = [string, number] type MyUnion = TupleToUnion // ^? string | number
definition: T[number]