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
Jan Oberhauser df3077b5d2 👕 Fix lint issue
2020-07-14 13:59:37 +02:00

8 lines
128 B
TypeScript

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