The base element, like named element with location.

interface BaseElement {
    description?: string;
    label: string;
    locationX?: number;
    locationY?: number;
    name: string;
}

Hierarchy (view full)

Properties

description?: string

The description of the element.

label: string

The display name.

locationX?: number

The location.

locationY?: number

The location.

name: string

The unique name.