UNPKG

n8n-nodes-zohoteaminbox

Version:

This is an n8n community node. It lets you use Zoho TeamInbox in your n8n workflows.

26 lines (25 loc) 949 B
import { type IExecuteFunctions, type ILoadOptionsFunctions, type INodeExecutionData, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; export declare class ZohoTeamInbox implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getListWorkspace(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getListTeam(this: ILoadOptionsFunctions): Promise<{ name: any; value: any; }[]>; getListInbox(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; getListFrom(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }