@webda/coretype-aliasesDeepPartialOn this page@webda/core • Readme | API Type alias: DeepPartial<T> DeepPartial<T>: { [P in keyof T]?: T[P] extends object ? DeepPartial<T[P]> : T[P] } Create a new type with only optional Type parameters • T Source packages/core/src/services/service.ts:275