@jsvision/core / DeepPartial
Type Alias: DeepPartial<T>
DeepPartial<
T> ={ [K in keyof T]?: T[K] extends object ? DeepPartial<T[K]> : T[K] }
Defined in: capability/profile.ts:110
Recursive partial: every field (nested included) becomes optional. Used by the override API.
Type Parameters
T
T