4 lines
230 B
TypeScript
4 lines
230 B
TypeScript
import type { SitemapItem, SitemapOptions } from './index.js';
|
|
/** Construct sitemap.xml given a set of URLs */
|
|
export declare function generateSitemap(pages: string[], finalSiteUrl: string, opts?: SitemapOptions): SitemapItem[];
|