mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-16 09:34:07 -08:00
0d9eeea024
* 📘 Set up overload * 🔥 Remove inferrable record assertions * 👕 Fix semicolon * 👕 Fix another semicolon
14 lines
282 B
TypeScript
14 lines
282 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;
|
|
};
|
|
}
|