Type Alias Expand<T>Internal

Expand: T extends infer O ? { [K in keyof O]: O[K] } : never

Utility type that expands a type into its keys and values.

https://stackoverflow.com/questions/57683303

Type Parameters

  • T