one
Version:
One is a new React Framework that makes Vite serve both native and web.
13 lines • 425 B
TypeScript
import type { One } from '../vite/types';
export type SitemapEntry = {
path: string;
priority?: number;
changefreq?: One.SitemapChangefreq;
lastmod?: string | Date;
};
export type RouteSitemapData = {
path: string;
routeExport?: One.RouteSitemap;
};
export declare function generateSitemap(routes: RouteSitemapData[], options: One.SitemapOptions): string;
//# sourceMappingURL=generateSitemap.d.ts.map