UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

14 lines (11 loc) 354 B
/** * Data table Node Types * * Re-exports all version-specific types and provides combined union type. */ import type { DataTableV11Node } from './v11'; import type { DataTableV1Node } from './v1'; export * from './v11'; export * from './v1'; // Combined union type for all versions export type DataTableNode = DataTableV11Node | DataTableV1Node;