@luolapeikko/ts-common
    Preparing search index...

    Type Alias Prettify<T>

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

    Prettifies a type.

    Type Parameters

    • T

      The type to prettify.

    v0.3.8

    type Prettified = Prettify<{ a: string; } & { b: number; } & { c: boolean; }> // { a: string; b: number; c: boolean; }