exportableObjects
BPMN package exports exportableObjects
namespace which contains default exportable object classes which are used during an export.
Classesβ
Typesβ
EventDefinitionβ
interface EventDefinition {
type: string;
marker: string;
interrupting: boolean;
}
Laneβ
interface Lane {
id: string;
fullyQualifiedId: string;
label: string | null;
sublanes: Lane[];
bbox: {
x: number;
y: number;
width: number;
height: number;
};
}
Note, that fullyQualifiedId
should be a XML compatible unique id.
Orientationβ
type Orientation = "horizontal" | "vertical";