KC's Workspace
    Preparing search index...

    Type Alias DeepPartial<T>Beta

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

    A utility type that makes all properties of T deeply optional. This means that not only the properties of T are optional, but also all nested properties within those properties are optional as well.

    Type Parameters

    • T