@agility/content-fetch
Version:
JS/TS library for the Agility Fetch API
8 lines (7 loc) • 349 B
TypeScript
/**
* A dictionary/map of all page routes. The key of this dictionary is the page path for a page.
* @typedef {Array.<AgilityFetch.Types.SitemapNestedItem>} SitemapNested - The array of pages for the sitemap.
* @memberof AgilityFetch.Types
*/
import { SitemapNestedItem } from "./SitemapNestedItem";
export type SitemapNested = SitemapNestedItem[];