Skip to content

Commit

Permalink
fix: missing imageConfig type in astro:assets (#8414)
Browse files Browse the repository at this point in the history
  • Loading branch information
Princesseuh authored Sep 5, 2023
1 parent 8352ee0 commit 5126c6a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/hip-cats-jump.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'astro': patch
---

Fix missing type for `imageConfig` export from `astro:assets`
3 changes: 2 additions & 1 deletion packages/astro/client.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ declare module 'astro:assets' {
| import('./dist/assets/types.js').ImageTransform
| import('./dist/assets/types.js').UnresolvedImageTransform
) => Promise<import('./dist/assets/types.js').GetImageResult>;
imageConfig: import('./dist/@types/astro').AstroConfig['image'];
getConfiguredImageService: typeof import('./dist/assets/index.js').getConfiguredImageService;
Image: typeof import('./components/Image.astro').default;
};
Expand All @@ -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;
}

type InputFormat = import('./dist/assets/types.js').ImageInputFormat;
Expand Down

0 comments on commit 5126c6a

Please sign in to comment.