Helpful
    Preparing search index...

    Type Alias ZDeepPartial<T>

    ZDeepPartial: {
        [P in keyof T]?: T[P] extends object ? ZDeepPartial<T[P]> : T[P]
    }

    Same as typescripts built in Partial and also makes it so all child objects are also Partial.

    Type Parameters

    • T