Skip to content

Commit

Permalink
Make Comment type compatible with estree's Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Tanimodori authored and marijnh committed Aug 4, 2022
1 parent 516bc12 commit 1173572
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acorn/dist/acorn.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ declare namespace acorn {
}

interface Comment extends AbstractToken {
type: string
type: 'Line' | 'Block'
value: string
start: number
end: number
Expand Down

0 comments on commit 1173572

Please sign in to comment.