Type alias Prettify<T>

Prettify<T>: {
    [K in keyof T]: T[K]
} & unknown

A utility type to make a union type show up in a better way in the IDE auto-completion.

Type Parameters

  • T