/** * We expose the tuple type because typescript will treat defaulted tuples as string[]; */ export type SupportedTupleType = string | number; /** * This returns a string[]. Lengths of 2 are currently supported */ export type Tuple = T | SupportedTupleType[];