Skip to content

Commit

Permalink
Changed README
Browse files Browse the repository at this point in the history
  • Loading branch information
vtrushin committed Oct 24, 2017
1 parent 8131da2 commit f5a2ce9
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ Object:
{
type: 'Object',
children: <Property[]>,
loc: Object | null
loc?: Object
}
```

Expand All @@ -99,7 +99,7 @@ Property:
type: 'Property',
key: <Identifier>,
value: any,
loc: Object | null
loc?: Object
}
```

Expand All @@ -109,7 +109,7 @@ Identifier:
type: 'Identifier',
value: String,
raw: String,
loc: Object | null
loc?: Object
}
```

Expand All @@ -118,7 +118,7 @@ Array:
{
type: 'Array',
children: <any[]>,
loc: Object | null
loc?: Object
}
```

Expand All @@ -128,7 +128,7 @@ Literal:
type: 'Literal',
value: String | Number | Boolean | null,
raw: String,
loc: Object | null
loc?: Object
}
```

Expand Down

0 comments on commit f5a2ce9

Please sign in to comment.