hermes-parser 0.12.0 → 0.13.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.
@@ -10,12 +10,12 @@
10
10
 
11
11
  // flowlint unclear-type:off
12
12
 
13
- export interface HermesPosition {
13
+ export type HermesPosition = {
14
14
  /** >= 1 */
15
- +line: number;
15
+ +line: number,
16
16
  /** >= 0 */
17
- +column: number;
18
- }
17
+ +column: number,
18
+ };
19
19
  export type HermesSourceLocation = {
20
20
  start?: HermesPosition,
21
21
  end?: HermesPosition,