TS-Scribe - v0.6.2
    Preparing search index...

    Type Alias DeepPartial<T>

    DeepPartial: T extends Record<string, unknown>
        ? { [P in keyof T]?: DeepPartial<T[P]> }
        : T

    A recursive partial type for objects, where all properties and nested properties are optional. This is useful when you want to allow partial updates or modifications to deeply nested objects.

    Type Parameters

    • T

      The object type to make deeply partial.