x4js - v2.2.49
    Preparing search index...

    Interface StackItemEx

    Represents an item in a StackBox.

    interface StackItemEx {
        content: Component<ComponentProps, ComponentEvents> | ContentBuilder;
        name: string;
        page: Component;
        title?: string;
    }

    Hierarchy (View Summary)

    Index

    Content of the stack item, either a component or a builder function.

    name: string

    Unique name for the stack item.

    page: Component
    title?: string