svelte-sitemap
Version:
Small helper which scans your Svelte routes folder and generates static sitemap.xml
9 lines (8 loc) • 443 B
TypeScript
import { Options, PagesJson } from '../interfaces/global.interface';
export declare const removeHtml: (fileName: string) => string;
export declare function prepareData(domain: string, options?: Options): Promise<PagesJson[]>;
export declare const detectErrors: ({ folder, htmlFiles }: {
folder: boolean;
htmlFiles: boolean;
}) => void;
export declare const writeSitemap: (items: PagesJson[], options: Options, domain: string) => void;