Documents for @litert/utils-ts-types
    Preparing search index...

    Type Alias IDeepPartial<T>

    IDeepPartial: {
        [P in keyof T]?: T[P] extends IObject ? IDeepPartial<T[P]> : T[P]
    }

    Recursively makes all properties of an object type optional.

    Type Parameters