The type of the objects being copied.
true if any changes were made to dst, or false if not.
Like above, but copies src into dst[dstKey]. This is useful if you're unsure if dst[dstKey]
already exists (as the right type of object) or if you don't want to subscribe to dst[dstKey].
Recursively copies properties or array items from
srctodst. It's designed to work efficiently with reactive proxies created by proxy.dstwith the same constructor as the corresponding object insrc,copywill recursively copy properties into the existingdstobject instead of replacing it. This minimizes change notifications for reactive updates.dstandsrc.