8000 fix: ESLintArrowFunctionExpression.body typing (#225) · vuejs/vue-eslint-parser@ae61e8d · GitHub
[go: up one dir, main page]

Skip to content

Commit ae61e8d

Browse files
authored
fix: ESLintArrowFunctionExpression.body typing (#225)
1 parent dbeb73b commit ae61e8d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ast/nodes.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ export interface ESLintArrowFunctionExpression extends HasLocation, HasParent {
486486
generator: boolean
487487
id: ESLintIdentifier | null
488488
params: ESLintPattern[]
489-
body: ESLintBlockStatement
489+
body: ESLintBlockStatement | ESLintExpression
490490
}
491491

492492
export interface ESLintSequenceExpression extends HasLocation, HasParent {

0 commit comments

Comments
 (0)
0