Utility TypeScript @ 2.0.0-beta.5
    Preparing search index...

    Type Alias _RecursivePartial_Value<T_Object>Private Internal

    _RecursivePartial_Value: T_Object extends (infer _Item)[]
        ? _RecursivePartial_Value<_Item>[]
        : T_Object extends | number
        | null
        | string
        | undefined
        | AnyClass
        | Function
        | Date
            ? T_Object
            : T_Object extends Record<number | string, any>
                ? RecursivePartial<T_Object>
                : T_Object

    This is used by RecursivePartial type to aid in recursion.

    Type Parameters

    • T_Object

      Type to Partial-ize. Can be a non-object without error.

    0.1.0