@agility/content-fetch
Version:
JS/TS library for the Agility Fetch API
10 lines (9 loc) • 357 B
TypeScript
/**
* 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;
}