scheduled timers are put in environment
This commit is contained in:
parent
446829c8ec
commit
166fd6d4bc
5 changed files with 87 additions and 53 deletions
|
|
@ -2,6 +2,7 @@ export type ParsedText = TransitionLabel | Comment;
|
|||
|
||||
export type TransitionLabel = {
|
||||
kind: "transitionLabel";
|
||||
uid: string; // uid of the text node
|
||||
trigger: Trigger;
|
||||
guard: Expression;
|
||||
actions: Action[];
|
||||
|
|
@ -9,6 +10,7 @@ export type TransitionLabel = {
|
|||
|
||||
export type Comment = {
|
||||
kind: "comment";
|
||||
uid: string; // uid of the text node
|
||||
text: string;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue