@bradgarropy/gatsby-plugin-seo
Version:
🔎 gatsby-plugin-seo
18 lines (17 loc) • 532 B
TypeScript
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 };