react-structured-data
react-structured-data copied to clipboard
TypeScript typings?
Would be cool with TypeScript typings.
You can create a type definition for your project.
//react-structured-data.d.ts
declare module 'react-structured-data' {
declare const JSONLD: React.ComponentType<{
dangerouslyExposeHtml?: boolean;
}>;
declare const AggregateRating: React.ComponentType<{
ratingValue?: number;
reviewCount?: number;
bestRating?: number;
}>;
}