Files
homewebsite/node_modules/@astrojs/sitemap/dist/utils/parse-i18n-url.d.ts
2025-10-17 21:06:57 +00:00

7 lines
225 B
TypeScript

interface ParsedI18nUrl {
locale: string;
path: string;
}
export declare function parseI18nUrl(url: string, defaultLocale: string, locales: Record<string, string>, base: string): ParsedI18nUrl | undefined;
export {};