gatsby-theme-advanced
Version:
GatsbyJS theme equipped with advanced features.
11 lines (10 loc) • 384 B
TypeScript
import { PostData, SeoData, OpenGraphTagList } from "./types";
import { UserData, WebsiteData } from "../../config";
declare type SeoArgs = {
seoData: SeoData;
websiteData: WebsiteData;
userData?: UserData;
postData?: PostData;
};
declare const OpenGraphTags: ({ seoData, websiteData, userData, postData, }: SeoArgs) => OpenGraphTagList;
export default OpenGraphTags;