n8n-nodes-google-search-console
Version:
n8n node for Google Search Console API integration
18 lines (17 loc) • 624 B
TypeScript
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[][]>;
}