n8n/packages/nodes-base/nodes/Microsoft/Sql/TableInterface.ts

8 lines
128 B
TypeScript
Raw Normal View History

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