UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

12 lines 293 B
import type { IDataObject } from 'n8n-workflow'; export interface ITables { [key: string]: { [key: string]: IDataObject[]; }; } export type OperationInputData = { table: string; columnString: string; items: IDataObject[]; }; //# sourceMappingURL=interfaces.d.ts.map