DeepPartial<T>: T extends PartiallyConstructible
    ? {
        [P in keyof T]?: DeepPartial<T[P]>
    }
    : T

Type Parameters

  • T