UNPKG

n8n-nodes-google-pagespeed

Version:

n8n community node for Google PageSpeed Insights API with comprehensive performance, accessibility, and SEO analysis

19 lines 690 B
import { IExecuteFunctions, INodeExecutionData } from 'n8n-workflow'; /** * Execute sitemap analysis operation * @param context - n8n execution context * @param apiKey - Google API key * @returns Array of analysis results including sitemap metadata */ export declare function executeAnalyzeSitemap(context: IExecuteFunctions, apiKey: string): Promise<INodeExecutionData[]>; /** * Validate sitemap analysis parameters * @param context - n8n execution context * @returns Validation result */ export declare function validateSitemapParams(context: IExecuteFunctions): { isValid: boolean; error?: string; warnings?: string[]; }; //# sourceMappingURL=analyzeSitemap.d.ts.map