UNPKG

@bradgarropy/gatsby-plugin-seo

Version:
18 lines (17 loc) • 532 B
import { FC } from "react"; import { FacebookProps } from "../Facebook"; import { ColorScheme } from "../Meta"; import { TwitterProps } from "../Twitter"; declare type SEOProps = { title?: string; description?: string; keywords?: string[]; icon?: string; themeColor?: string; colorScheme?: ColorScheme; facebook?: Pick<FacebookProps, "image" | "type" | "url">; twitter?: Pick<TwitterProps, "image" | "card" | "site">; }; declare const SEO: FC<SEOProps>; export default SEO; export type { SEOProps };