mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
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:
13
packages/nodes-base/nodes/Google/Docs/interfaces.ts
Normal file
13
packages/nodes-base/nodes/Google/Docs/interfaces.ts
Normal 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;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user