astro-ghostcms/.pnpm-store/v3/files/07/5bedfdc632b4bb7b4446a6e897a...

23 lines
411 B
Plaintext

/**
* Astro global available in all contexts in .astro files
*
* [Astro documentation](https://docs.astro.build/reference/api-reference/#astro-global)
*/
declare const Astro: any;
declare const Fragment: any;
declare module '*.md' {
const md: any;
export default md;
}
declare module '*.mdx' {
const mdx: any;
export default mdx;
}
declare module '*.html' {
const html: any;
export default html;
}