Patch
@rotorsoft/act-root / act/src / Patch
Type Alias: Patch<T>
Patch<
T
> ={ [K in keyof T]?: T[K] extends Schema ? Patch<T[K]> : T[K] }
Defined in: libs/act/src/types/action.ts:67
A recursive partial type for patching state objects.
Type Parameters
T
T
The base type to patch.