fix: Type problems regarding global variable

This commit is contained in:
Faruk AYDIN
2022-10-06 00:49:24 +03:00
parent 8308265a62
commit 63ffd1f720
7 changed files with 21 additions and 24 deletions

View File

@@ -1,3 +1,4 @@
import { IJSONObject } from '@automatisch/types';
import Step from '../../models/step';
import Context from '../../types/express/context';
@@ -6,7 +7,7 @@ type Params = {
id: string;
key: string;
appKey: string;
parameters: Record<string, unknown>;
parameters: IJSONObject;
flow: {
id: string;
};