hermes-estree 0.34.0 → 0.36.0

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.
@@ -1213,7 +1213,7 @@ export type TypeAnnotationType =
1213
1213
 
1214
1214
  export interface Variance extends BaseNode {
1215
1215
  +type: 'Variance';
1216
- +kind: 'plus' | 'minus';
1216
+ +kind: 'plus' | 'minus' | 'readonly' | 'writeonly' | 'in' | 'out';
1217
1217
  }
1218
1218
 
1219
1219
  interface BaseTypeAlias extends BaseNode {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hermes-estree",
3
- "version": "0.34.0",
3
+ "version": "0.36.0",
4
4
  "description": "Flow types for the Flow-ESTree spec produced by the hermes parser",
5
5
  "main": "dist/index.js",
6
6
  "license": "MIT",