@webagent-cloud/n8n-nodes-webagent
Version:
Webagent n8n nodes package
14 lines (13 loc) • 547 B
TypeScript
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 {};