Files
n8n-enterprise-unlocked/packages/nodes-base/nodes/Microsoft/Sql/TableInterface.ts

8 lines
128 B
TypeScript

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