mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
👕 Fix lint issue
This commit is contained in:
parent
0251996b2a
commit
d324082021
|
@ -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 {
|
||||||
|
|
|
@ -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(),
|
||||||
|
|
Loading…
Reference in a new issue