brand.d.ts 428 B

1234567891011
  1. /// <reference types="react" />
  2. import type { AggregateRating } from 'src/types';
  3. import { JsonLdProps } from './jsonld';
  4. export interface BrandJsonLdProps extends JsonLdProps {
  5. id: string;
  6. slogan?: string;
  7. logo?: string;
  8. aggregateRating?: AggregateRating;
  9. }
  10. declare function BrandJsonLd({ type, id, keyOverride, aggregateRating, ...rest }: BrandJsonLdProps): JSX.Element;
  11. export default BrandJsonLd;