@agility/content-fetch
Version:
JS/TS library for the Agility Fetch API
12 lines (11 loc) • 384 B
TypeScript
/**
* Defines a page's visibility.
* @typedef SitemapVisibility
* @memberof AgilityFetch.Types
* @property {boolean} menu - If set to true, this page should be hidden from menus.
* @property {boolean} sitemap - If set to true, this page should be hidden from the sitemap and not accessible by robots.
*/
export interface SitemapVisibility {
menu: boolean;
sitemap: boolean;
}