Skip to content

Commit

Permalink
fix: fix wrong CommentType type definition
Browse files Browse the repository at this point in the history
  • Loading branch information
3cp committed Nov 5, 2020
1 parent 7aaabdf commit 641b6ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/estree.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ export type ArgumentExpression =
| LogicalExpression
| SequenceExpression;

export type CommentType = 'Line' | 'Block' | 'HTMLOpen' | 'HTMLClose';
export type CommentType = 'SingleLine' | 'MultiLine' | 'HTMLOpen' | 'HTMLClose' | 'HashbangComment';

export interface Comment {
type: CommentType;
Expand Down

0 comments on commit 641b6ee

Please sign in to comment.