Member Junction
    Preparing search index...

    Node in the layout tree

    interface LayoutNode {
        componentState?: Record<string, unknown>;
        componentType?: string;
        content?: LayoutNode[];
        height?: number;
        isClosable?: boolean;
        title?: string;
        type: "row" | "column" | "stack" | "component";
        width?: number;
    }
    Index

    Properties

    componentState?: Record<string, unknown>
    componentType?: string
    content?: LayoutNode[]
    height?: number
    isClosable?: boolean
    title?: string
    type: "row" | "column" | "stack" | "component"
    width?: number