summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--packages/astro/types/content.d.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/astro/types/content.d.ts b/packages/astro/types/content.d.ts
index 5c9101549..51516b8ac 100644
--- a/packages/astro/types/content.d.ts
+++ b/packages/astro/types/content.d.ts
@@ -51,7 +51,7 @@ declare module 'astro:content' {
| import('astro/zod').ZodUnion<[BaseAtomicSchema, ...BaseAtomicSchema[]]>
| import('astro/zod').ZodDiscriminatedUnion<string, BaseAtomicSchema[]>
// If we have a union of unions, give up on trying to type-check it all. You're on your own.
- | import('astro/zod').ZodUnion<[import('astro/zod').ZodUnion<z.any>, ...z.any[]]>
+ | import('astro/zod').ZodUnion<[import('astro/zod').ZodUnion<z.any>, ...z.any[]]>;
type BaseSchemaWithoutEffects =
| BaseAtomicSchema