@astrojs/compiler 2.10.1 → 2.10.2
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 +4 -0
- package/package.json +1 -1
package/dist/astro.wasm
CHANGED
|
Binary file
|
package/dist/shared/types.d.ts
CHANGED
|
@@ -103,6 +103,10 @@ interface SourceMap {
|
|
|
103
103
|
sourcesContent: string[];
|
|
104
104
|
version: number;
|
|
105
105
|
}
|
|
106
|
+
/**
|
|
107
|
+
* Represents a location in a TSX file.
|
|
108
|
+
* Both the `start` and `end` properties are 0-based, and are based off utf-16 code units. (i.e. JavaScript's `String.prototype.length`)
|
|
109
|
+
*/
|
|
106
110
|
interface TSXLocation {
|
|
107
111
|
start: number;
|
|
108
112
|
end: number;
|
package/package.json
CHANGED