mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
a739245332
Github issue / Community forum post (link here to close automatically): --------- Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
14 lines
234 B
TypeScript
14 lines
234 B
TypeScript
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
export interface ITables {
|
|
[key: string]: {
|
|
[key: string]: IDataObject[];
|
|
};
|
|
}
|
|
|
|
export type OperationInputData = {
|
|
table: string;
|
|
columnString: string;
|
|
items: IDataObject[];
|
|
};
|