Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Microsoft/Excel/v2/helpers/interfaces.ts
2025-09-08 04:48:28 +08:00

15 lines
305 B
TypeScript
Executable File

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