getSuggestionForNonexistentModule -> getSuggestionForNonexistentExport

This commit is contained in:
Daniel Rosenwasser
2018-07-05 20:42:13 -07:00
parent b93845ae51
commit 32bb63cbcf
3 changed files with 4 additions and 4 deletions

View File

@@ -2996,7 +2996,7 @@ namespace ts {
getApparentType(type: Type): Type;
getSuggestionForNonexistentProperty(name: Identifier | string, containingType: Type): string | undefined;
getSuggestionForNonexistentSymbol(location: Node, name: string, meaning: SymbolFlags): string | undefined;
getSuggestionForNonexistentModule(node: Identifier, target: Symbol): string | undefined;
getSuggestionForNonexistentExport(node: Identifier, target: Symbol): string | undefined;
getBaseConstraintOfType(type: Type): Type | undefined;
getDefaultFromTypeParameter(type: Type): Type | undefined;