UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

14 lines 247 B
export type Table = { id: string; name: string; fields: Field[]; }; export type TablesResponse = { tables: Table[]; }; export type Field = { id: string; name: string; type: string; }; //# sourceMappingURL=types.d.ts.map