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[];
};
}