diff --git a/.changeset/many-ears-drum.md b/.changeset/many-ears-drum.md new file mode 100644 index 000000000000..f728408a082a --- /dev/null +++ b/.changeset/many-ears-drum.md @@ -0,0 +1,5 @@ +--- +'astro': patch +--- + +Fix missing type for `imageConfig` export from `astro:assets` diff --git a/packages/astro/client-base.d.ts b/packages/astro/client-base.d.ts index 3b0ee490167d..6bd60da8cd96 100644 --- a/packages/astro/client-base.d.ts +++ b/packages/astro/client-base.d.ts @@ -53,6 +53,7 @@ declare module 'astro:assets' { | import('./dist/assets/types.js').UnresolvedImageTransform ) => Promise; getConfiguredImageService: typeof import('./dist/assets/index.js').getConfiguredImageService; + imageConfig: import('./dist/@types/astro').AstroConfig['image']; Image: typeof import('./components/Image.astro').default; }; @@ -69,7 +70,7 @@ declare module 'astro:assets' { export type RemoteImageProps = Simplify< import('./dist/assets/types.js').RemoteImageProps >; - export const { getImage, getConfiguredImageService, Image }: AstroAssets; + export const { getImage, getConfiguredImageService, imageConfig, Image }: AstroAssets; } declare module 'astro:transitions' {