Skip to content

Commit

Permalink
fix missing typings
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixTJDietrich committed Oct 22, 2024
1 parent a4d12e0 commit 7fa52ab
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions docs/source/user/api/typings.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,17 @@ export type UMLClassifier = UMLElement & {
};
export type UMLDeploymentNode = UMLElement & {
stereotype: string;
displayStereotype: boolean;
};
export type UMLDeploymentComponent = UMLElement & {
displayStereotype: boolean;
};
export type UMLComponentSubsystem = UMLElement & {
stereotype: string;
displayStereotype: boolean;
};
export type UMLComponentComponent = UMLElement & {
displayStereotype: boolean;
};
export type UMLPetriNetPlace = UMLElement & {
amountOfTokens: number;
Expand Down

0 comments on commit 7fa52ab

Please sign in to comment.