import { deepSyncInternal } from './deep/deep_sync_adv' export function sync_object(target: T, obj: T) { deepSyncInternal(target, obj, { excludePaths: () => false, refPaths: () => true, currentPath: ['$'], }) return target; }