mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-19 11:01:15 +00:00
feat(Microsoft Excel 365 Node): Overhaul
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
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[];
|
||||
};
|
||||
Reference in New Issue
Block a user