n8n/packages/nodes-base/nodes/Microsoft/Sql/TableInterface.ts
2020-07-08 10:13:46 +02:00

8 lines
133 B
TypeScript

import { IDataObject } from 'n8n-workflow';
export interface ITables {
[key: string]: {
[key: string]: Array<IDataObject>;
};
}