UNPKG

@webagent-cloud/n8n-nodes-webagent

Version:
14 lines (13 loc) 547 B
import { ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription } from 'n8n-workflow'; declare function getAuthContexts(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; declare function getTasks(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>; export declare class Webagent implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getAuthContexts: typeof getAuthContexts; getTasks: typeof getTasks; }; }; } export {};