@forge42/seo-tools
Version:
Framework agnostic set of helpers designed to help you create, maintain and develop your SEO
13 lines (10 loc) • 345 B
text/typescript
import { Car, WithContext } from 'schema-dts';
export { Car } from 'schema-dts';
/**
* Helper function to generate a car ld+json structured data object.
* @param car Car object
* @returns object to be used in head via json-ld script tag
* @see https://schema.org/Car
*/
declare const car: (car: Car) => WithContext<Car>;
export { car };