File tree 4 files changed +4
-4
lines changed
4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -103138,7 +103138,7 @@ var ts;
103138
103138
if (resolvedModuleSymbol !== moduleSymbol &&
103139
103139
// Don't add another completion for `export =` of a symbol that's already global.
103140
103140
// So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
103141
- ts.some (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103141
+ ts.every (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103142
103142
symbols.push(resolvedModuleSymbol);
103143
103143
symbolToSortTextMap[ts.getSymbolId(resolvedModuleSymbol)] = SortText.AutoImportSuggestions;
103144
103144
symbolToOriginInfoMap[ts.getSymbolId(resolvedModuleSymbol)] = { kind: 3 /* Export */, moduleSymbol: moduleSymbol, isDefaultExport: false };
Original file line number Diff line number Diff line change @@ -103501,7 +103501,7 @@ var ts;
103501
103501
if (resolvedModuleSymbol !== moduleSymbol &&
103502
103502
// Don't add another completion for `export =` of a symbol that's already global.
103503
103503
// So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
103504
- ts.some (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103504
+ ts.every (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103505
103505
symbols.push(resolvedModuleSymbol);
103506
103506
symbolToSortTextMap[ts.getSymbolId(resolvedModuleSymbol)] = SortText.AutoImportSuggestions;
103507
103507
symbolToOriginInfoMap[ts.getSymbolId(resolvedModuleSymbol)] = { kind: 3 /* Export */, moduleSymbol: moduleSymbol, isDefaultExport: false };
Original file line number Diff line number Diff line change @@ -103490,7 +103490,7 @@ var ts;
103490
103490
if (resolvedModuleSymbol !== moduleSymbol &&
103491
103491
// Don't add another completion for `export =` of a symbol that's already global.
103492
103492
// So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
103493
- ts.some (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103493
+ ts.every (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103494
103494
symbols.push(resolvedModuleSymbol);
103495
103495
symbolToSortTextMap[ts.getSymbolId(resolvedModuleSymbol)] = SortText.AutoImportSuggestions;
103496
103496
symbolToOriginInfoMap[ts.getSymbolId(resolvedModuleSymbol)] = { kind: 3 /* Export */, moduleSymbol: moduleSymbol, isDefaultExport: false };
Original file line number Diff line number Diff line change @@ -103490,7 +103490,7 @@ var ts;
103490
103490
if (resolvedModuleSymbol !== moduleSymbol &&
103491
103491
// Don't add another completion for `export =` of a symbol that's already global.
103492
103492
// So in `declare namespace foo {} declare module "foo" { export = foo; }`, there will just be the global completion for `foo`.
103493
- ts.some (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103493
+ ts.every (resolvedModuleSymbol.declarations, function (d) { return !!d.getSourceFile().externalModuleIndicator; })) {
103494
103494
symbols.push(resolvedModuleSymbol);
103495
103495
symbolToSortTextMap[ts.getSymbolId(resolvedModuleSymbol)] = SortText.AutoImportSuggestions;
103496
103496
symbolToOriginInfoMap[ts.getSymbolId(resolvedModuleSymbol)] = { kind: 3 /* Export */, moduleSymbol: moduleSymbol, isDefaultExport: false };
You can’t perform that action at this time.
0 commit comments