Cleanup after merge

This commit is contained in:
Felix Kaspar
2023-11-14 17:34:50 +01:00
parent 01bc1b0303
commit 02957f7757
4 changed files with 7 additions and 17 deletions

View File

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

View File

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

View File

@@ -1,5 +0,0 @@
export interface PDF {
originalFileName: string;
fileName: string;
buffer: Uint8Array;
}