0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2025-02-10 22:38:53 -05:00

fix: missing orientation from image() schema

This commit is contained in:
Princesseuh 2024-05-25 04:09:38 +02:00
parent 8c3a3155e4
commit c3bf8bfe42
No known key found for this signature in database
GPG key ID: 105BBD6D57F2B0C0

View file

@ -8,6 +8,7 @@ declare module 'astro:content' {
src: import('astro/zod').ZodString;
width: import('astro/zod').ZodNumber;
height: import('astro/zod').ZodNumber;
orientation: import('astro/zod').ZodOptional<import('astro/zod').ZodNumber>;
format: import('astro/zod').ZodUnion<
[
import('astro/zod').ZodLiteral<'png'>,