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