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 {
1397
1397
if ( resolvedModuleSymbol !== moduleSymbol &&
1398
1398
// Don't add another completion for `export =` of a symbol that's already global.
1399
1399
// 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 ) ) {
1401
1401
symbols . push ( resolvedModuleSymbol ) ;
1402
1402
symbolToOriginInfoMap [ getSymbolId ( resolvedModuleSymbol ) ] = { kind : SymbolOriginInfoKind . Export , moduleSymbol, isDefaultExport : false } ;
1403
1403
}
You can’t perform that action at this time.
0 commit comments