diff --git a/src/worker/ExecutionPluginInterface.ts b/src/worker/ExecutionPluginInterface.ts index 87405d3..2e56746 100644 --- a/src/worker/ExecutionPluginInterface.ts +++ b/src/worker/ExecutionPluginInterface.ts @@ -1,8 +1,8 @@ - export interface ExecutionPluginInterface { msg: string action: string preLog: string - options: PluginOptionsSchema + // these are of type SchemaObjectInstance, but does not work as expected + options: any execute() : Promise }