🎉 initiate project *astro_rewrite*
This commit is contained in:
parent
ffd4d5e86c
commit
2ba37bfbe3
8658 changed files with 2268794 additions and 2538 deletions
54
node_modules/@astrojs/sitemap/dist/schema.d.ts
generated
vendored
Normal file
54
node_modules/@astrojs/sitemap/dist/schema.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,54 @@
|
|||
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, {
|
||||
changefreq?: ChangeFreq | undefined;
|
||||
priority?: number | undefined;
|
||||
lastmod?: Date | undefined;
|
||||
i18n?: {
|
||||
locales: Record<string, string>;
|
||||
defaultLocale: string;
|
||||
} | undefined;
|
||||
filter?: ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
|
||||
customPages?: string[] | undefined;
|
||||
canonicalURL?: string | undefined;
|
||||
serialize?: ((args_0: any, ...args_1: unknown[]) => any) | undefined;
|
||||
entryLimit: number;
|
||||
}, {
|
||||
changefreq?: ChangeFreq | undefined;
|
||||
priority?: number | undefined;
|
||||
lastmod?: Date | undefined;
|
||||
i18n?: {
|
||||
locales: Record<string, string>;
|
||||
defaultLocale: string;
|
||||
} | undefined;
|
||||
filter?: ((args_0: string, ...args_1: unknown[]) => boolean) | undefined;
|
||||
customPages?: string[] | undefined;
|
||||
canonicalURL?: string | undefined;
|
||||
entryLimit?: number | undefined;
|
||||
serialize?: ((args_0: any, ...args_1: unknown[]) => any) | undefined;
|
||||
}>>;
|
||||
Loading…
Add table
Add a link
Reference in a new issue