summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.changeset/many-ears-drum.md5
-rw-r--r--packages/astro/client-base.d.ts3
2 files changed, 7 insertions, 1 deletions
diff --git a/.changeset/many-ears-drum.md b/.changeset/many-ears-drum.md
new file mode 100644
index 000000000..f728408a0
--- /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 3b0ee4901..6bd60da8c 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<import('./dist/assets/types.js').GetImageResult>;
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<ImgAttributes>
>;
- export const { getImage, getConfiguredImageService, Image }: AstroAssets;
+ export const { getImage, getConfiguredImageService, imageConfig, Image }: AstroAssets;
}
declare module 'astro:transitions' {