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,3 +1,4 @@
import { PdfFile } from "wrappers/PdfFile";
import { Action } from "../../declarations/Action";
import Joi from "@stirling-tools/joi";
@@ -33,7 +34,7 @@ export class Operator {
this.actionValues = action.values;
}
async run(input: any[], progressCallback: (progress: Progress) => void): Promise<any[]> {
async run(input: PdfFile[] | any[], progressCallback: (progress: Progress) => void): Promise<PdfFile[] | any[]> {
return [];
}
}