arcs nicely curve when they connect a rountangle to itself
This commit is contained in:
parent
e009f718d2
commit
da0e56e17c
11 changed files with 526 additions and 153 deletions
|
|
@ -26,6 +26,12 @@ export type Transition = {
|
|||
}
|
||||
|
||||
export type Statechart = {
|
||||
root: ConcreteState;
|
||||
root: OrState;
|
||||
transitions: Map<string, Transition[]>; // key: source state uid
|
||||
|
||||
variables: Set<string>;
|
||||
|
||||
inputEvents: Set<string>;
|
||||
internalEvents: Set<string>;
|
||||
outputEvents: Set<string>;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue