File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -1397,7 +1397,7 @@ namespace ts.Completions {
13971397 if ( resolvedModuleSymbol !== moduleSymbol &&
13981398 // Don't add another completion for `export =` of a symbol that's already global.
13991399 // So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
1400- resolvedModuleSymbol . declarations . some ( d => ! ! d . getSourceFile ( ) . externalModuleIndicator ) ) {
1400+ some ( resolvedModuleSymbol . declarations , d => ! ! d . getSourceFile ( ) . externalModuleIndicator ) ) {
14011401 symbols . push ( resolvedModuleSymbol ) ;
14021402 symbolToOriginInfoMap [ getSymbolId ( resolvedModuleSymbol ) ] = { kind : SymbolOriginInfoKind . Export , moduleSymbol, isDefaultExport : false } ;
14031403 }
You can’t perform that action at this time.
0 commit comments