n8n/packages/nodes-base/nodes/Google/Docs/interfaces.d.ts
Iván Ovejero eafef019d7
fix: Expand nodes-base formatting validation (no-changelog) (#4689)
*  Simplify `format` command

* 🎨 Format more deeply nested files
2022-11-22 13:43:28 +01:00

14 lines
283 B
TypeScript

import type { IDataObject } from 'n8n-workflow';
export interface IUpdateBody extends IDataObject {
requests: IDataObject[];
writeControl?: { [key: string]: string };
}
export type IUpdateFields = IDataObject & {
writeControlObject: {
control: string;
value: string;
};
};