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

    Type Alias _RecursivePartial_Inner<T_Object>Private Internal

    _RecursivePartial_Inner: 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