@astrojs/language-server 0.20.1 → 0.21.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/types/env.d.ts ADDED
@@ -0,0 +1,22 @@
1
+ /**
2
+ * Astro global available in all contexts in .astro files
3
+ *
4
+ * [Astro documentation](https://docs.astro.build/reference/api-reference/#astro-global)
5
+ */
6
+ declare const Astro: any;
7
+ declare const Fragment: any;
8
+
9
+ declare module '*.md' {
10
+ const md: any;
11
+ export default md;
12
+ }
13
+
14
+ declare module '*.mdx' {
15
+ const mdx: any;
16
+ export default mdx;
17
+ }
18
+
19
+ declare module '*.html' {
20
+ const html: any;
21
+ export default html;
22
+ }