UNPKG

next-seo

Version:

SEO plugin for Next.js projects

10 lines (9 loc) 333 B
/// <reference types="react" /> import { JsonLdProps } from './jsonld'; export interface DatasetJsonLdProps extends JsonLdProps { description: string; name: string; license?: string; } declare function DatasetJsonLd({ type, keyOverride, ...rest }: DatasetJsonLdProps): JSX.Element; export default DatasetJsonLd;