GenericFields

This commit is contained in:
Felix Kaspar
2024-02-25 20:55:48 +01:00
parent 20f027bb5a
commit 13bfa0b0d0
13 changed files with 173 additions and 28 deletions

View File

@@ -1,6 +1,6 @@
export interface Action {
values: any;
type: string;
type: "wait" | "done" | "impose" | string;
actions?: Action[];
}