hermes-estree 0.35.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.
- package/dist/types.js.flow +1 -1
- package/package.json +1 -1
package/dist/types.js.flow
CHANGED
|
@@ -1213,7 +1213,7 @@ export type TypeAnnotationType =
|
|
|
1213
1213
|
|
|
1214
1214
|
export interface Variance extends BaseNode {
|
|
1215
1215
|
+type: 'Variance';
|
|
1216
|
-
+kind: 'plus' | 'minus' | 'readonly';
|
|
1216
|
+
+kind: 'plus' | 'minus' | 'readonly' | 'writeonly' | 'in' | 'out';
|
|
1217
1217
|
}
|
|
1218
1218
|
|
|
1219
1219
|
interface BaseTypeAlias extends BaseNode {
|