RecursivePartial | WebHare Platform SDK
WebHare Platform SDK
    Preparing search index...

    Type Alias RecursivePartial<T>

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

    Recursively apply Partial<> on records in a type

    Type Parameters

    • T

      Type to convert