@ekim088/toolkit
    Preparing search index...

    Type Alias RecursivePartial<T>

    RecursivePartial: {
        [P in keyof T]?: T[P] extends Record<keyof any, unknown>
            ? RecursivePartial<T[P]>
            : T[P]
    }

    Declares an object and its nested objects as partials.

    Type Parameters

    • T