refactor: Integrate consistent-type-imports in FE packages (no-changelog) (#6060)

* 👕 Move `consistent-type-imports` to top level

* 👕 Apply lintfixes

* 👕 Apply more lintfixes

* 👕 More lintfixes

* 👕 More lintfixes
This commit is contained in:
Iván Ovejero
2023-04-24 12:18:24 +02:00
committed by GitHub
parent eaf7090919
commit 57aab63c10
269 changed files with 624 additions and 569 deletions

View File

@@ -8,7 +8,7 @@ import {
START_NODE_TYPE,
STORES,
} from '@/constants';
import {
import type {
ExecutionsQueryFilter,
IActivationError,
IExecutionDeleteFilter,
@@ -32,12 +32,10 @@ import {
WorkflowsState,
} from '@/Interface';
import { defineStore } from 'pinia';
import {
deepCopy,
import type {
IAbstractEventMessage,
IConnection,
IConnections,
IDataObject,
IExecutionsSummary,
INode,
INodeConnections,
@@ -54,9 +52,9 @@ import {
IRunExecutionData,
ITaskData,
IWorkflowSettings,
NodeHelpers,
Workflow,
} from 'n8n-workflow';
import type { IDataObject } from 'n8n-workflow';
import { deepCopy, NodeHelpers, Workflow } from 'n8n-workflow';
import Vue from 'vue';
import { useRootStore } from './n8nRootStore';