Type Alias TupleToUnion<T>

TupleToUnion<T>: {
    [K in keyof T]: T[K]
}[number]

Type Parameters

  • T extends any[]