@skriptfabrik/n8n-nodes-moco
Version:
MOCO community nodes for n8n
17 lines (16 loc) • 983 B
TypeScript
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodePropertyOptions, INodeType, 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[][]>;
}