ixfx
    Preparing search index...

    Type Alias RecursivePartial<T>

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

    Type Parameters

    • T