Dynamic Icons Scripting Reference - v1.3.0
    Preparing search index...

    Type Alias PartialDeep<T>

    PartialDeep: {
        [P in keyof T]?: T[P] extends (infer U)[]
            ? PartialDeep<U>[]
            : T[P] extends object | undefined ? PartialDeep<T[P]> : T[P]
    }

    A recursive version of Partial<> type. Accepts any existing property of this object, including child objects and their properties.

    Type Parameters

    • T