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:
parent
8c3a3155e4
commit
c3bf8bfe42
1 changed files with 1 additions and 0 deletions
1
packages/astro/types/content.d.ts
vendored
1
packages/astro/types/content.d.ts
vendored
|
@ -8,6 +8,7 @@ declare module 'astro:content' {
|
||||||
src: import('astro/zod').ZodString;
|
src: import('astro/zod').ZodString;
|
||||||
width: import('astro/zod').ZodNumber;
|
width: import('astro/zod').ZodNumber;
|
||||||
height: import('astro/zod').ZodNumber;
|
height: import('astro/zod').ZodNumber;
|
||||||
|
orientation: import('astro/zod').ZodOptional<import('astro/zod').ZodNumber>;
|
||||||
format: import('astro/zod').ZodUnion<
|
format: import('astro/zod').ZodUnion<
|
||||||
[
|
[
|
||||||
import('astro/zod').ZodLiteral<'png'>,
|
import('astro/zod').ZodLiteral<'png'>,
|
||||||
|
|
Loading…
Add table
Reference in a new issue