UNPKG

@traien/n8n-nodes-espocrm

Version:
9 lines (8 loc) 467 B
import { IDataObject, IExecuteFunctions } from 'n8n-workflow'; export interface EntityHandler { create(this: IExecuteFunctions, index: number): Promise<IDataObject>; get(this: IExecuteFunctions, index: number): Promise<IDataObject>; update(this: IExecuteFunctions, index: number): Promise<IDataObject>; delete(this: IExecuteFunctions, index: number): Promise<IDataObject>; getAll(this: IExecuteFunctions, index: number): Promise<IDataObject[]>; }