UNPKG

@n8n/n8n-nodes-langchain

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