gatsby-plugin-next-seo
Version:
SEO plugin for Gatsby projects
22 lines • 541 B
TypeScript
import { FC } from 'react';
import { DeferSeoProps } from '../types';
/**
* @internal
*/
export interface SocialProfileJsonLdProps extends DeferSeoProps {
type: string;
name: string;
url: string;
sameAs: string[];
}
/**
* @deprecated
*
* See the Google
* {@link https://developers.google.com/search/docs/data-types/social-profile | documentation}
* with the reason for deprecation.
*
* @internal
*/
export declare const SocialProfileJsonLd: FC<SocialProfileJsonLdProps>;
//# sourceMappingURL=social-profile.d.ts.map