UNPKG

@agility/content-fetch

Version:
10 lines (9 loc) 357 B
/** * A dictionary/map of all page routes. The key of this dictionary is the page path for a page. * @typedef {Object.<string, AgilityFetch.Types.SitemapFlatItem>} SitemapFlat - The valid page routes. * @memberof AgilityFetch.Types */ import { SitemapFlatItem } from "./SitemapFlatItem"; export interface SitemapFlat { [key: string]: SitemapFlatItem; }