UNPKG

@skriptfabrik/n8n-nodes-moco

Version:
17 lines (16 loc) 1.01 kB
import { type IExecuteFunctions, type ILoadOptionsFunctions, type INodeExecutionData, type INodePropertyOptions, type INodeType, type INodeTypeDescription } from 'n8n-workflow'; export declare class Moco implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { listCompanies(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; listCustomers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; listLeads(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; listProjects(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; listProjectTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; listTeams(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; listUsers(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }