Type Alias Entries<T>

Entries<T>: UnionToTuple<{
    [K in keyof T]: [K, T[K]]
}[keyof T]>

Entries of T

Type Parameters

  • T extends object