Experimental
Uses the default Partial to make only property values partial.
2.0.0-beta.3
export type PartialChildren<T> = { [ P in keyof T ]: Partial<T[ P ]>;}; Copy
export type PartialChildren<T> = { [ P in keyof T ]: Partial<T[ P ]>;};
Uses the default Partial to make only property values partial.