UNPKG

next-seo

Version:

SEO plugin for Next.js projects

22 lines (21 loc) 859 B
import React from 'react'; import { JsonLdProps } from './jsonld'; import { Address, AggregateRating, AmenityFeature, Geo, OpeningHoursSpecification } from 'src/types'; export interface CampgroundJsonLdProps extends JsonLdProps { address: Address | Address[]; amenityFeature?: AmenityFeature | AmenityFeature[]; description: string; geo?: Geo; images?: string[]; isAccessibleForFree?: boolean; name: string; openingHours?: OpeningHoursSpecification | OpeningHoursSpecification[]; petsAllowed?: boolean; priceRange?: string; rating?: AggregateRating; telephone?: string; type?: string; url?: string; } declare function CampgroundJsonLd({ address, geo, images, keyOverride, openingHours, type, amenityFeature, rating, ...rest }: CampgroundJsonLdProps): React.JSX.Element; export default CampgroundJsonLd;