n8n-nodes-googlesearch
Version:
n8n node for Google Search API without Python dependency
15 lines (14 loc) • 509 B
TypeScript
import { IExecuteFunctions, INodeExecutionData, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class GoogleSearch implements INodeType {
private version;
getNodeInfo(): {
version: string;
currentQueryCount: string;
};
description: INodeTypeDescription;
testGoogleSearchApiCredentials(this: IExecuteFunctions): Promise<{
status: string;
message: string;
}>;
execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}