Type Utils
    Preparing search index...

    Type Alias MergeObjects<L, R>

    MergeObjects: Id<
        Pick<L, Exclude<keyof L, keyof R>> & Pick<
            R,
            Exclude<keyof R, OptionalPropertyNames<R>>,
        > & Pick<R, Exclude<OptionalPropertyNames<R>, keyof L>> & SpreadProperties<
            L,
            R,
            OptionalPropertyNames<R> & keyof L,
        >,
    >

    Type Parameters

    • L
    • R