A layout node holding groups together in a page

interface Section {
    groups?: Group[];
    id?: string;
    overridden?: boolean;
}

Properties

groups?: Group[]
id?: string

The id for the layout node.

overridden?: boolean

A value indicating whether this layout node has been overridden by a child layout.