DeepPartial
@rotorsoft/act-root / act-patch/src / DeepPartial
Type Alias: DeepPartial<T>
DeepPartial<
T> ={ [K in keyof T]?: T[K] extends Record<string, any> ? DeepPartial<T[K]> : T[K] }
Defined in: libs/act-patch/src/types.ts:17
Recursive deep partial — useful for consumer APIs.
Type Parameters
T
T