Typed Operations

This commit is contained in:
Felix Kaspar
2023-11-13 18:18:23 +01:00
parent 89e8c3b0ba
commit 185cd1c0a7
2 changed files with 8 additions and 4 deletions

View File

@@ -1,5 +1,9 @@
export interface Operation {
values: {id:any};
protected values: any;
type: string;
operations?: Operation[];
}
export interface WaitOperation extends Operation {
values: { id: number }
}