next-seo
Version:
SEO plugin for Next.js projects
12 lines (11 loc) • 428 B
TypeScript
/// <reference types="react" />
import type { AggregateRating } from 'src/types';
import { JsonLdProps } from './jsonld';
export interface BrandJsonLdProps extends JsonLdProps {
id: string;
slogan?: string;
logo?: string;
aggregateRating?: AggregateRating;
}
declare function BrandJsonLd({ type, id, keyOverride, aggregateRating, ...rest }: BrandJsonLdProps): JSX.Element;
export default BrandJsonLd;