Skip to content

Commit

Permalink
fix(typescript-estree): include Comment in Token union type
Browse files Browse the repository at this point in the history
  • Loading branch information
G-Rath committed Apr 13, 2020
1 parent 1f805dd commit 9eb7d6e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/typescript-estree/src/ts-estree/ts-estree.ts
Expand Up @@ -115,6 +115,7 @@ export interface LineComment extends BaseToken {
export type Comment = BlockComment | LineComment;
export type Token =
| BooleanToken
| Comment
| IdentifierToken
| JSXIdentifierToken
| JSXTextToken
Expand Down

0 comments on commit 9eb7d6e

Please sign in to comment.