@mirego/forra-api / All Types / DeepPartial
Type Alias: DeepPartial\<T>
DeepPartial\<
T> ={ [P in keyof T]?: T[P] extends object ? T[P] extends (infer U)[] ? DeepPartial<U>[] : DeepPartial<T[P]> : T[P] }
Type Parameters
T
T
@mirego/forra-api / All Types / DeepPartial
DeepPartial\<
T> ={ [P in keyof T]?: T[P] extends object ? T[P] extends (infer U)[] ? DeepPartial<U>[] : DeepPartial<T[P]> : T[P] }
T