(source, target, ignoreReturnTypes)
| 64325 | return checkTypeRelatedTo(source, target, comparableRelation, errorNode, headMessage, containingMessageChain); |
| 64326 | } |
| 64327 | function isSignatureAssignableTo(source, target, ignoreReturnTypes) { |
| 64328 | return compareSignaturesRelated(source, target, ignoreReturnTypes ? 4 /* SignatureCheckMode.IgnoreReturnTypes */ : 0, /*reportErrors*/ false, |
| 64329 | /*errorReporter*/ undefined, /*errorReporter*/ undefined, compareTypesAssignable, /*reportUnreliableMarkers*/ undefined) !== 0 /* Ternary.False */; |
| 64330 | } |
| 64331 | /** |
| 64332 | * Returns true if `s` is `(...args: any[]) => any` or `(this: any, ...args: any[]) => any` |
| 64333 | */ |
no test coverage detected