(type, keyType)
| 59491 | // Return the indexing info of the given kind in the given type. Creates synthetic union index types when necessary and |
| 59492 | // maps primitive types and type parameters are to their apparent types. |
| 59493 | function getIndexInfoOfType(type, keyType) { |
| 59494 | return findIndexInfo(getIndexInfosOfType(type), keyType); |
| 59495 | } |
| 59496 | // Return the index type of the given kind in the given type. Creates synthetic union index types when necessary and |
| 59497 | // maps primitive types and type parameters are to their apparent types. |
| 59498 | function getIndexTypeOfType(type, keyType) { |
no test coverage detected
searching dependent graphs…