@yuku-toolchain/types 0.5.32
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/README.md +13 -0
- package/index.d.ts +2013 -0
- package/package.json +28 -0
package/README.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# @yuku-toolchain/types
|
|
2
|
+
|
|
3
|
+
Shared TypeScript type definitions for the [yuku](https://github.com/yuku-toolchain/yuku)
|
|
4
|
+
toolchain: the ESTree / TypeScript-ESTree AST node types, diagnostics, source
|
|
5
|
+
locations, and the base walk/scan cursor shapes.
|
|
6
|
+
|
|
7
|
+
```ts
|
|
8
|
+
import type { Program, Node, Comment, Diagnostic } from "@yuku-toolchain/types";
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## License
|
|
12
|
+
|
|
13
|
+
MIT
|