Patch
@rotorsoft/act-root / act-patch/src / Patch
Type Alias: Patch<T>
Patch<
T> = { [K in keyof T]?: T[K] extends Schema ? Patch<T[K]> | null : T[K] | null }
Defined in: libs/act-patch/src/types.ts:10
Recursive partial for patching state objects. Properties set to undefined or null are deleted.
Type Parameters
T
T