Interface representing a default child object in a component or behavior definition.

This interface defines the structure for specifying default children of a component or behavior, including their type and initial properties.

interface DefaultChild {
    initialProps: {
        [id: string]: any;
    };
    label: string;
    type: string;
}

Properties

initialProps: {
    [id: string]: any;
}
label: string
type: string