UNPKG

@bradgarropy/gatsby-plugin-seo

Version:
13 lines (12 loc) • 350 B
import { FC } from "react"; declare type CardType = "summary" | "summary_large_image" | "app" | "player"; declare type TwitterProps = { title?: string; description?: string; image?: string; card?: CardType; site?: string; }; declare const Twitter: FC<TwitterProps>; export default Twitter; export type { CardType, TwitterProps };