UNPKG

@bradgarropy/gatsby-plugin-seo

Version:
14 lines (13 loc) • 371 B
import { FC } from "react"; declare type MetaProps = { title?: string; description?: string; keywords?: string[]; icon?: string; themeColor?: string; colorScheme?: ColorScheme; }; declare type ColorScheme = "normal" | "light" | "dark" | "only light"; declare const Meta: FC<MetaProps>; export default Meta; export type { ColorScheme, MetaProps };