interface ConflictPolicySource {
    merge: boolean | Iterable<PropertyKey>;
    overwrite: true | Iterable<PropertyKey>;
    skip: true | Iterable<PropertyKey>;
    throw: true | Iterable<PropertyKey>;
}

Properties

merge: boolean | Iterable<PropertyKey>

Allow merge whenever possible?

overwrite: true | Iterable<PropertyKey>

Properties to overwrite

skip: true | Iterable<PropertyKey>

Properties to skip

throw: true | Iterable<PropertyKey>

Properties to throw on