astro-ghostcms/.pnpm-store/v3/files/5b/dac55471e936352a5bb54fffcf9...

55 lines
2.1 KiB
Plaintext

import { EnumChangefreq as ChangeFreq } from 'sitemap';
import { z } from 'zod';
export declare const SitemapOptionsSchema: z.ZodDefault<z.ZodObject<{
filter: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodString], z.ZodUnknown>, z.ZodBoolean>>;
customPages: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
canonicalURL: z.ZodOptional<z.ZodString>;
i18n: z.ZodOptional<z.ZodEffects<z.ZodObject<{
defaultLocale: z.ZodString;
locales: z.ZodRecord<z.ZodString, z.ZodString>;
}, "strip", z.ZodTypeAny, {
locales: Record<string, string>;
defaultLocale: string;
}, {
locales: Record<string, string>;
defaultLocale: string;
}>, {
locales: Record<string, string>;
defaultLocale: string;
}, {
locales: Record<string, string>;
defaultLocale: string;
}>>;
entryLimit: z.ZodDefault<z.ZodOptional<z.ZodNumber>>;
serialize: z.ZodOptional<z.ZodFunction<z.ZodTuple<[z.ZodAny], z.ZodUnknown>, z.ZodAny>>;
changefreq: z.ZodOptional<z.ZodNativeEnum<typeof ChangeFreq>>;
lastmod: z.ZodOptional<z.ZodDate>;
priority: z.ZodOptional<z.ZodNumber>;
}, "strict", z.ZodTypeAny, {
entryLimit: number;
filter?: ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
customPages?: string[] | undefined;
canonicalURL?: string | undefined;
i18n?: {
locales: Record<string, string>;
defaultLocale: string;
} | undefined;
serialize?: ((args_0: any, ...args_1: unknown[]) => any) | undefined;
changefreq?: ChangeFreq | undefined;
lastmod?: Date | undefined;
priority?: number | undefined;
}, {
filter?: ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
customPages?: string[] | undefined;
canonicalURL?: string | undefined;
i18n?: {
locales: Record<string, string>;
defaultLocale: string;
} | undefined;
entryLimit?: number | undefined;
serialize?: ((args_0: any, ...args_1: unknown[]) => any) | undefined;
changefreq?: ChangeFreq | undefined;
lastmod?: Date | undefined;
priority?: number | undefined;
}>>;