chore: Enable ESLint rule consistent-type-exports (#18973)

This commit is contained in:
Suguru Inoue
2025-08-29 19:02:49 +02:00
committed by GitHub
parent 5ea4be474e
commit d64a94753f
25 changed files with 64 additions and 61 deletions

View File

@@ -1,5 +1,5 @@
export * from './binary-data.service';
export { BinaryDataConfig } from './binary-data.config';
export * from './types';
export type * from './types';
export { ObjectStoreService } from './object-store/object-store.service.ee';
export { isStoredMode as isValidNonDefaultMode } from './utils';

View File

@@ -13,7 +13,7 @@ declare module 'n8n-workflow' {
}
export * from './active-workflows';
export * from './interfaces';
export type * from './interfaces';
export * from './routing-node';
export * from './node-execution-context';
export * from './partial-execution-utils';

View File

@@ -13,6 +13,6 @@ export * from './nodes-loader';
export * from './utils';
export { WorkflowHasIssuesError } from './errors/workflow-has-issues.error';
export * from './interfaces';
export type * from './interfaces';
export * from './node-execute-functions';
export { NodeExecuteFunctions };