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