ts-type-forge
    Preparing search index...

    Type Alias MergeIntersection<R>

    MergeIntersection: { [K in keyof R]: R[K] }

    Merges an intersection of object types R into a single object type with combined properties. Useful for making intersected types more readable in tooltips.

    Type Parameters

    type Merged = MergeIntersection<{ a: string } & { b: number }>; // { a: string; b: number }