Get the specified value by tuple from T.
Signature:
export type TupleGet<T, K extends readonly Keys<T>[]> = InternalTupleGet<T, K>References: Keys, InternalTupleGet
interface Props {
a: {
d: () => void
}
b: string
c: boolean
}
// Expect: [{ d: () => void }, string]
type PropValues = TupleGet<Props, ['a', 'b']>