cel-tui
    Preparing search index...

    Interface ContainerNode

    A layout container node in the UI tree.

    Created by VStack (vertical) or HStack (horizontal). Contains an ordered list of child nodes.

    interface ContainerNode {
        children: Node[];
        props: ContainerProps;
        type: "vstack" | "hstack";
    }
    Index

    Properties

    Properties

    children: Node[]

    Ordered child nodes.

    Container layout, sizing, and interaction props.

    type: "vstack" | "hstack"

    "vstack" for vertical layout, "hstack" for horizontal.