Skip to content

Commit

Permalink
Undo merge conflict-y change
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshuaKGoldberg committed Oct 17, 2023
1 parent 1f31c78 commit 189d04a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/type-utils/src/TypeOrValueSpecifier.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ function specifierNameMatches(type: ts.Type, name: string[] | string): boolean {
if (symbol === undefined) {
return false;
}
return name.some(item => item === (symbol.escapedName as string));
return name.some(item => (item as ts.__String) === symbol.escapedName);
}

function typeDeclaredInFile(
Expand Down

0 comments on commit 189d04a

Please sign in to comment.