Skip to content

Type Alias: Prettify<T> ​

Prettify a type by flattening its structure.

Signature ​

ts
export type Prettify<T> = { [K in keyof T]: T[K] } & {}

Type Parameters ​

NameDescription
TThe type to be prettified.

Released under the MIT License.