Appearance
gunshi / default / Prettify
type Prettify<T> = { [K in keyof T]: T[K] } & object;
Prettify a type by flattening its structure.
T