0
Fork 0
mirror of https://github.com/withastro/astro.git synced 2024-12-16 21:46:22 -05:00

Expose ContentConfig type from astro:content (#9840)

* Expose `ContentConfig` type from `astro:content`

* Add changeset
This commit is contained in:
Chris Swithinbank 2024-01-27 07:44:37 +01:00 committed by GitHub
parent a407eb5ac2
commit 70fdf1a5c6
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 6 additions and 1 deletions

View file

@ -0,0 +1,5 @@
---
'astro': patch
---
Expose `ContentConfig` type from `astro:content`

View file

@ -183,5 +183,5 @@ declare module 'astro:content' {
type AnyEntryMap = ContentEntryMap & DataEntryMap;
type ContentConfig = '@@CONTENT_CONFIG_TYPE@@';
export type ContentConfig = '@@CONTENT_CONFIG_TYPE@@';
}