mirror of
https://github.com/n8n-io/n8n.git
synced 2025-03-05 20:50:17 -08:00
fix lint errors
This commit is contained in:
parent
00df04743f
commit
f82a8562ba
|
@ -7,7 +7,6 @@ import { Get, Middleware, RestController } from '@/decorators';
|
|||
import { NotFoundError } from '@/errors/response-errors/not-found.error';
|
||||
import type { IWorkflowStatisticsDataLoaded, WorkflowStatisticsData } from '@/interfaces';
|
||||
import { Logger } from '@/logging/logger.service';
|
||||
|
||||
import { WorkflowStatisticsService } from '@/services/workflow-statistics.service';
|
||||
|
||||
import { StatisticsRequest } from './workflow-statistics.types';
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
import type { INode, IRun, IWorkflowBase } from 'n8n-workflow';
|
||||
import { Service } from 'typedi';
|
||||
|
||||
import { StatisticsNames, WorkflowStatistics } from '@/databases/entities/workflow-statistics';
|
||||
import type { WorkflowStatistics } from '@/databases/entities/workflow-statistics';
|
||||
import { StatisticsNames } from '@/databases/entities/workflow-statistics';
|
||||
import { WorkflowStatisticsRepository } from '@/databases/repositories/workflow-statistics.repository';
|
||||
import { EventService } from '@/events/event.service';
|
||||
import type { WorkflowStatisticsData } from '@/interfaces';
|
||||
import { Logger } from '@/logging/logger.service';
|
||||
import { UserService } from '@/services/user.service';
|
||||
import { TypedEmitter } from '@/typed-emitter';
|
||||
|
||||
import { OwnershipService } from './ownership.service';
|
||||
import { WorkflowStatisticsData } from '@/interfaces';
|
||||
|
||||
type WorkflowStatisticsEvents = {
|
||||
nodeFetchedData: { workflowId: string; node: INode };
|
||||
|
|
Loading…
Reference in a new issue