Sitemap Entry
XML sitemap URL entry with lastmod, changefreq, and priority.
seo
Install
$ npx shadcn@latest add @open-types/sitemap-entry
Source
export type SitemapChangeFreq =
| "always"
| "hourly"
| "daily"
| "weekly"
| "monthly"
| "yearly"
| "never";
export interface SitemapEntry {
loc: string;
lastmod?: string;
changefreq?: SitemapChangeFreq;
priority?: number;
}
export type SitemapChangeFreq =
| "always"
| "hourly"
| "daily"
| "weekly"
| "monthly"
| "yearly"
| "never";
export interface SitemapEntry {
loc: string;
lastmod?: string;
changefreq?: SitemapChangeFreq;
priority?: number;
}