@n8n/n8n-nodes-langchain
Version:

10 lines (9 loc) • 379 B
TypeScript
import type { IExecuteFunctions, INodeExecutionData, INodeType } from 'n8n-workflow';
import { listSearch } from './methods';
export declare class AlibabaCloud implements INodeType {
description: import("n8n-workflow").INodeTypeDescription;
methods: {
listSearch: typeof listSearch;
};
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}