We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd52e9a commit c21193aCopy full SHA for c21193a
src/compiler/checker.ts
@@ -15368,20 +15368,6 @@ namespace ts {
15368
return symbol && getExportSymbolOfValueSymbolIfExported(symbol).valueDeclaration;
15369
}
15370
15371
- function instantiateSingleCallFunctionType(functionType: Type, typeArguments: Type[]): Type {
15372
- if (functionType === unknownType) {
15373
- return unknownType;
15374
- }
15375
-
15376
- const signature = getSingleCallSignature(functionType);
15377
- if (!signature) {
15378
15379
15380
15381
- const instantiatedSignature = getSignatureInstantiation(signature, typeArguments);
15382
- return getOrCreateTypeFromSignature(instantiatedSignature);
15383
15384
15385
function createResolver(): EmitResolver {
15386
return {
15387
getReferencedExportContainer,
0 commit comments