@bradgarropy/gatsby-plugin-seo
Version:
🔎 gatsby-plugin-seo
13 lines (12 loc) • 492 B
TypeScript
import { FC } from "react";
declare type ObjectType = "music.song" | "music.album" | "music.playlist" | "music.radio_station" | "video.movie" | "video.episode" | "video.tv_show" | "video.other" | "article" | "book" | "profile" | "website";
declare type FacebookProps = {
url?: string;
title?: string;
description?: string;
image?: string;
type?: ObjectType;
};
declare const Facebook: FC<FacebookProps>;
export default Facebook;
export type { FacebookProps, ObjectType };