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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
234 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[];
};
}
export type OperationInputData = {
table: string;
columnString: string;
items: IDataObject[];
};