BaseElement: {
    attributes: Attributes;
    elementName: string;
    id: string;
    items: string[];
    parent?: string;
    size: number;
    type: RowType;
}

Represents a base element.

Type declaration

  • attributes: Attributes

    The attributes of the element.

  • elementName: string

    The name of the element.

  • id: string

    The ID of the element.

  • items: string[]

    The items associated with the element.

  • Optional parent?: string

    The parent element ID, if any.

  • size: number

    The size of the element.

  • type: RowType

    The type of the element.