Skip to content

Commit 596c644

Browse files
committed
Remove unnecessary tag
1 parent 1f69c48 commit 596c644

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/checker.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8612,7 +8612,7 @@ namespace ts {
86128612
const stringIndexTypes: Type[] = [];
86138613
for (const t of (<IntersectionType>objectType).types) {
86148614
if (isStringIndexOnlyType(t)) {
8615-
stringIndexTypes.push(getIndexTypeOfType(t, IndexKind.String)!); // TODO: GH#18217
8615+
stringIndexTypes.push(getIndexTypeOfType(t, IndexKind.String)!);
86168616
}
86178617
else {
86188618
regularTypes.push(t);

0 commit comments

Comments
 (0)