Amplify Toolbox
    Preparing search index...

    Type Alias DeepPartial<T>

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

    Represents a type that allows partial deep cloning of an object. The DeepPartial type recursively makes all properties of T optional. If a property is an object, it will also be made partially optional.

    Type Parameters

    • T

      The type of the object to make partially optional.