Skip to content

Commit

Permalink
Update typings
Browse files Browse the repository at this point in the history
  • Loading branch information
matthiaslehnertum committed Nov 27, 2023
1 parent 717908c commit 671801f
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions docs/source/user/api/typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ import { Direction } from './services/uml-element/uml-element-port';
import { IBoundary } from './utils/geometry/boundary';
import { IPath } from './utils/geometry/path';
import { BPMNGatewayType } from './packages/bpmn/bpmn-gateway/bpmn-gateway';
import { BPMNConversationType } from './packages/bpmn/bpmn-conversation/bpmn-conversation';
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';
export { UMLDiagramType, UMLElementType, UMLRelationshipType, ApollonMode, Locale };
export type { Styles };
export type ApollonOptions = {
Expand Down Expand Up @@ -89,11 +92,20 @@ export type UMLPetriNetPlace = UMLElement & {
amountOfTokens: number;
capacity: number | string;
};
export type BPMNTask = UMLElement & {
taskType: BPMNTaskType;
};
export type BPMNGateway = UMLElement & {
gatewayType: BPMNGatewayType;
};
export type BPMNConversation = UMLElement & {
conversationType: BPMNConversationType;
export type BPMNStartEvent = UMLElement & {
eventType: BPMNStartEventType;
};
export type BPMNIntermediateEvent = UMLElement & {
eventType: BPMNIntermediateEventType;
};
export type BPMNEndEvent = UMLElement & {
eventType: BPMNEndEventType;
};
export type BPMNFlow = UMLRelationship & {
flowType: 'sequence' | 'message' | 'association';
Expand Down

0 comments on commit 671801f

Please sign in to comment.