astro-ghostcms/.pnpm-store/v3/files/60/a535468e47a7af0b9104f608da4...

8 lines
390 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { z } from 'astro/zod';
import type { RSSOptions } from './index.js';
/** Normalize URL to its canonical form */
export declare function createCanonicalURL(url: string, trailingSlash?: RSSOptions['trailingSlash'], base?: string): URL;
/** Check if a URL is already valid */
export declare function isValidURL(url: string): boolean;
export declare const errorMap: z.ZodErrorMap;