n8n/packages/nodes-base/nodes/Microsoft/Excel/v2/helpers/interfaces.ts
2023-05-02 12:44:25 +03:00

15 lines
305 B
TypeScript

import type { IDataObject } from 'n8n-workflow';
export type SheetRow = Array<string | number | null>;
export type SheetData = SheetRow[];
export type ExcelResponse = {
values: SheetData;
};
export type UpdateSummary = {
updatedData: SheetData;
appendData: IDataObject[];
updatedRows: number[];
};