augment-vir - v32.2.2
    Preparing search index...

    Type Alias Merge<Destination, Source>

    Merge: Destination extends unknown
        ? Source extends unknown
            ? If<
                IsEqual<Destination, Source>,
                Destination,
                MergeNonEqual<Destination, Source>,
            >
            : never
        : never

    Merge two types into a new type. Keys of the second type override keys of the first type.

    Copied from the Merge type in the type-fest package so that this package's public types do not depend on type-fest (see the note in type-checks.ts).

    Type Parameters

    • Destination
    • Source