refactor: Stop using .d.ts files for type-collection files (no-changelog) (#6634)

refactor: Stop using `.d.ts` files for type-collection files
This commit is contained in:
Iván Ovejero
2023-07-10 19:35:34 +02:00
committed by GitHub
parent 07744986ea
commit d6b2ae0255
31 changed files with 44 additions and 35 deletions

View File

@@ -0,0 +1,13 @@
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;
};
};