bringapp
    Preparing search index...

    Type Alias EntityContent

    Represents the content of an entity, which includes header, main, footer, and layout sections.

    type EntityContent = {
        footer: BringNode[] | null;
        header: BringNode[] | null;
        layout: BringNode[] | null;
        main: BringNode[] | null;
    }
    Index

    Properties

    footer: BringNode[] | null

    The footer content.

    header: BringNode[] | null

    The header content.

    layout: BringNode[] | null

    The layout content.

    main: BringNode[] | null

    The main content.