@n8n/n8n-nodes-langchain
Version:

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