mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-13 16:14:07 -08:00
15 lines
305 B
TypeScript
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[];
|
|
};
|