fix: Backend eslint warnings

This commit is contained in:
Faruk AYDIN
2022-03-07 16:18:29 +03:00
committed by Ömer Faruk Aydın
parent ecc9239bfe
commit 775ac7a8b1
20 changed files with 144 additions and 71 deletions

View File

@@ -6,8 +6,8 @@ class ExecutionStep extends Base {
id!: string;
executionId!: string;
stepId!: string;
dataIn!: any;
dataOut!: any;
dataIn!: Record<string, unknown>;
dataOut!: Record<string, unknown>;
status: string;
static tableName = 'execution_steps';