UNPKG

n8n-nodes-google-search-console

Version:
18 lines (17 loc) 624 B
import { INodeExecutionData, INodeType, INodeTypeDescription, IExecuteFunctions, ILoadOptionsFunctions } from 'n8n-workflow'; export declare class GoogleSearchConsole implements INodeType { description: INodeTypeDescription; methods: { loadOptions: { getVerifiedSites(this: ILoadOptionsFunctions): Promise<{ name: string; value: string; description: string; }[] | { name: string; value: string; }[]>; }; }; execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>; }