AboutSupportDeveloper GuideVersion 41.129.83.3
interface LayoutComponent {
    componentName: "view";
    componentState?: Partial<ViewCreationOptions>;
    height?: number;
    id?: string | string[];
    isClosable?: boolean;
    title?: string;
    type: "component";
    width?: number;
}

Properties

componentName: "view"

Only a component type will have this property and it should be set to view.

componentState?: Partial<ViewCreationOptions>

Only a component type will have this property and it represents the view options of a given component.

height?: number
id?: string | string[]
isClosable?: boolean
title?: string
type: "component"
width?: number