Skip to content

Commit

Permalink
Update typings.d.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaslehnertum committed Dec 11, 2023
1 parent 6a17c60 commit 150ba66
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion docs/source/user/api/typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ import { BPMNEndEventType } from './packages/bpmn/bpmn-end-event/bpmn-end-event'
import { BPMNStartEventType } from './packages/bpmn/bpmn-start-event/bpmn-start-event';
import { BPMNIntermediateEventType } from './packages/bpmn/bpmn-intermediate-event/bpmn-intermediate-event';
import { BPMNTaskType } from './packages/bpmn/bpmn-task/bpmn-task';
import { BPMNFlowType } from './packages/bpmn/bpmn-flow/bpmn-flow';
import { BPMNMarkerType } from './packages/bpmn/common/types';
export { UMLDiagramType, UMLElementType, UMLRelationshipType, ApollonMode, Locale };
export type { Styles };
export type ApollonOptions = {
Expand Down Expand Up @@ -94,6 +96,7 @@ export type UMLPetriNetPlace = UMLElement & {
};
export type BPMNTask = UMLElement & {
taskType: BPMNTaskType;
marker: BPMNMarkerType;
};
export type BPMNGateway = UMLElement & {
gatewayType: BPMNGatewayType;
Expand All @@ -108,7 +111,7 @@ export type BPMNEndEvent = UMLElement & {
eventType: BPMNEndEventType;
};
export type BPMNFlow = UMLRelationship & {
flowType: 'sequence' | 'message' | 'association';
flowType: BPMNFlowType;
};
export type UMLReachabilityGraphMarking = UMLElement & {
isInitialMarking: boolean;
Expand Down

0 comments on commit 150ba66

Please sign in to comment.