UNPKG

astro-seo-plugin

Version:

A strong and reliable Astro SEO optimization plugin made just for Astro-based websites that boosts performance, makes sites more visible to search engines, and helps developers get their sites to rank higher. It does this through smart analytics and by ma

18 lines 675 B
import type { OpenGraphProps, TwitterCardProps, RobotsProps } from '../types'; export declare const generateMetaTags: (title: string, description?: string, canonical?: string, noindex?: boolean, nofollow?: boolean) => Array<{ name: string; content: string; } | { property: string; content: string; }>; export declare const generateOpenGraphTags: (og: OpenGraphProps) => Array<{ property: string; content: string; }>; export declare const generateTwitterTags: (twitter: TwitterCardProps) => Array<{ name: string; content: string; }>; export declare const generateRobotsContent: (robots: RobotsProps) => string; //# sourceMappingURL=seo.d.ts.map