@forge42/seo-tools
Version:
Framework agnostic set of helpers designed to help you create, maintain and develop your SEO
18 lines (15 loc) • 484 B
text/typescript
import { ItemList, WithContext } from 'schema-dts';
export { ItemList } from 'schema-dts';
/**
* This helper is used to generate an item list ld+json structured data object.
*
*
* Find more information about the item list schema here:
*
*
* @see https://schema.org/ItemList
* @param itemList ItemList object
* @returns ItemList object to be used in head via json-ld script tag
*/
declare const itemList: (itemList: ItemList) => WithContext<ItemList>;
export { itemList };