Type Alias Prettify<T>

Prettify: { [K in keyof T]: T[K] } & {}

Type Parameters

  • T

Combines members of an intersection into a readable type.

Prettify<{ a: string } & { b: string } & { c: number, d: bigint }>
=> { a: string, b: string, c: number, d: bigint }