UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

12 lines 618 B
import type { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeListSearchResult, INodeType, INodeTypeDescription } from 'n8n-workflow'; export declare class Trello implements INodeType { description: INodeTypeDescription; methods: { listSearch: { searchBoards(this: ILoadOptionsFunctions, query?: string): Promise<INodeListSearchResult>; searchCards(this: ILoadOptionsFunctions, query?: string): Promise<INodeListSearchResult>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; } //# sourceMappingURL=Trello.node.d.ts.map