* Return the signatures of the given kind in the given type. Creates synthetic union signatures when necessary and * maps primitive types and type parameters are to their apparent types.
(type, kind)
| 59439 | * maps primitive types and type parameters are to their apparent types. |
| 59440 | */ |
| 59441 | function getSignaturesOfType(type, kind) { |
| 59442 | return getSignaturesOfStructuredType(getReducedApparentType(type), kind); |
| 59443 | } |
| 59444 | function findIndexInfo(indexInfos, keyType) { |
| 59445 | return ts.find(indexInfos, function (info) { return info.keyType === keyType; }); |
| 59446 | } |
no test coverage detected