function createChangeProxy<T>(target, parent?): object;Defined in: packages/db/src/proxy.ts:451
Creates a proxy that tracks changes to the target object
T extends Record<string | symbol, any>
T
The object to proxy
ChangeParent
Optional parent information
object
An object containing the proxy and a function to get the changes
getChanges: () => Record<string | symbol, any>;Record<string | symbol, any>
proxy: T;