socialProfile.d.ts 387 B

12345678910
  1. /// <reference types="react" />
  2. import { JsonLdProps } from './jsonld';
  3. export interface SocialProfileJsonLdProps extends JsonLdProps {
  4. type: 'Person' | 'Organization';
  5. name: string;
  6. url: string;
  7. sameAs: string[];
  8. }
  9. declare function SocialProfileJsonLd({ type, keyOverride, ...rest }: SocialProfileJsonLdProps): JSX.Element;
  10. export default SocialProfileJsonLd;