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

    Type Alias RecursivePartialChildren<T>Experimental

    RecursivePartialChildren: { [P in keyof T]: _RecursivePartial_Value<T[P]> }

    Uses RecursivePartial to make only property values partial.

    Type Parameters

    • T

    2.0.0-beta.3

    export type RecursivePartialChildren<T> = {
    [ P in keyof T ]: _RecursivePartial_Value<T[ P ]>;
    };