We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36e0ed5 commit c03d74fCopy full SHA for c03d74f
CHANGELOG.md
@@ -8,15 +8,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
8
* Add class instance fields support:
9
```js
10
class X {
11
- public = 1;
12
- #private = 2;
+ pub = 1;
+ #priv = 2;
13
}
14
```
15
* Add class static fields support:
16
17
18
- static public = 1;
19
- static #private = 2;
+ static pub = 1;
+ static #priv = 2;
20
21
22
* Add `export * as ns` support when `sourceType` is 'module':
0 commit comments