UNPKG

next-seo

Version:

SEO plugin for Next.js projects

11 lines (10 loc) 387 B
/// <reference types="react" /> import { JsonLdProps } from './jsonld'; export interface SocialProfileJsonLdProps extends JsonLdProps { type: 'Person' | 'Organization'; name: string; url: string; sameAs: string[]; } declare function SocialProfileJsonLd({ type, keyOverride, ...rest }: SocialProfileJsonLdProps): JSX.Element; export default SocialProfileJsonLd;