1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Microsoft/Sql/TableInterface.ts

8 lines
133 B
TypeScript
Raw Normal View History

import type { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
2020-07-14 04:59:37 -07:00
[key: string]: IDataObject[];
};
}