👕 Fix lint issue

This commit is contained in:
Jan Oberhauser 2020-12-31 09:33:03 +01:00
parent 0251996b2a
commit d324082021
2 changed files with 3 additions and 3 deletions

View file

@ -45,7 +45,7 @@ export interface IBullJobData {
} }
export interface IBullJobResponse { export interface IBullJobResponse {
runData: IRun, runData: IRun;
} }
export interface ICustomRequest extends Request { export interface ICustomRequest extends Request {

View file

@ -1,10 +1,10 @@
import { import {
ActiveExecutions, ActiveExecutions,
IBullJobResponse,
CredentialsOverwrites, CredentialsOverwrites,
CredentialTypes, CredentialTypes,
ExternalHooks, ExternalHooks,
IBullJobData, IBullJobData,
IBullJobResponse,
ICredentialsOverwrite, ICredentialsOverwrite,
ICredentialsTypeData, ICredentialsTypeData,
IProcessMessageDataHook, IProcessMessageDataHook,
@ -265,7 +265,7 @@ export class WorkflowRunner {
message: 'Workflow has been canceled!', message: 'Workflow has been canceled!',
} as IExecutionError, } as IExecutionError,
runData: {}, runData: {},
} },
}, },
mode: data.executionMode, mode: data.executionMode,
startedAt: new Date(), startedAt: new Date(),