6T6WON5JNGCRCSUUMKLMHD4D2R7NJANUNXCBL37LUQQHFMOPD5DQC
type ChildInstructions<
ChildInstanceType,
ChildPropsType extends Props,
ParentPropsType extends Props,
ParentStateType extends State
> = {
childClass: new (props: ChildPropsType) => ChildInstanceType;
instance?: ChildInstanceType;
propsFactory: (
parentProps: ParentPropsType,
parentState: ParentStateType
) => ChildPropsType;
};