jamespot-user-api
    Preparing search index...

    Type Alias Readable<T>

    Readable: T extends infer U ? { [K in keyof U]: U[K] } : never

    Ease usage in IDE by decomposing complex types Decompose combined types into simple object types A: {a: string} B: A & {b: int} Readable => {a: string, b:int}

    Type Parameters

    • T