@astrojs/compiler 2.9.2 → 2.10.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/dist/astro.wasm +0 -0
- package/dist/shared/types.d.ts +2 -1
- package/package.json +1 -1
package/dist/astro.wasm
CHANGED
|
Binary file
|
package/dist/shared/types.d.ts
CHANGED
|
@@ -112,10 +112,11 @@ interface TSXExtractedTag {
|
|
|
112
112
|
content: string;
|
|
113
113
|
}
|
|
114
114
|
interface TSXExtractedScript extends TSXExtractedTag {
|
|
115
|
-
type: 'processed-module' | 'module' | 'inline' | 'event-attribute' | 'json' | 'unknown';
|
|
115
|
+
type: 'processed-module' | 'module' | 'inline' | 'event-attribute' | 'json' | 'raw' | 'unknown';
|
|
116
116
|
}
|
|
117
117
|
interface TSXExtractedStyle extends TSXExtractedTag {
|
|
118
118
|
type: 'tag' | 'style-attribute';
|
|
119
|
+
lang: 'css' | 'scss' | 'sass' | 'less' | 'stylus' | 'styl' | 'postcss' | 'pcss' | 'unknown' | (string & {});
|
|
119
120
|
}
|
|
120
121
|
interface TSXResult {
|
|
121
122
|
code: string;
|
package/package.json
CHANGED