env.d.ts — astro Source File
Architecture documentation for env.d.ts, a typescript file in the astro codebase.
Entity Profile
Relationship Graph
Source Code
/**
* Astro global available in all contexts in .astro files
*
* [Astro documentation](https://docs.astro.build/en/reference/api-reference/)
*/
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;
}
Source
Frequently Asked Questions
What does env.d.ts do?
env.d.ts is a source file in the astro codebase, written in typescript.
Where is env.d.ts in the architecture?
env.d.ts is located at packages/language-tools/language-server/types/env.d.ts (directory: packages/language-tools/language-server/types).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free