utility-pickle - v0.1.1
    Preparing search index...

    Type Alias DeepPartial<T>

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

    Represents a recursive partial version of a given type T.

    Type Parameters

    • T

      The type to transform into a deeply partial version.