Skip to content

Commit

Permalink
Remove duplicate type in union
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiandev committed Nov 10, 2020
1 parent bb9ac89 commit 4724a20
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/factory.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Scanner, TypeInfo } from './scanner';
import { MutationContext } from './context';

export type FunctionDeclarationLikeNode = ts.ArrowFunction | ts.FunctionDeclaration |
ts.FunctionExpression | ts.ArrowFunction | ts.ConstructorDeclaration | ts.MethodDeclaration |
ts.FunctionExpression | ts.ConstructorDeclaration | ts.MethodDeclaration |
ts.SetAccessorDeclaration | ts.GetAccessorDeclaration;

export type FunctionLikeNode = ts.FunctionExpression | ts.ArrowFunction | ts.FunctionDeclaration |
Expand Down

0 comments on commit 4724a20

Please sign in to comment.