Skip to content

Commit 6bfbc7a

Browse files
committed
Merge remote-tracking branch 'remotes/origin/main' into fwienber/api-extractor-fix-3593-reference-alias
# Conflicts: # apps/api-extractor/src/collector/CollectorEntity.ts # build-tests/api-extractor-scenarios/etc/exportImportStarAs2/api-extractor-scenarios.api.json # build-tests/api-extractor-scenarios/etc/namespaceImports/api-extractor-scenarios.api.json # build-tests/api-extractor-scenarios/etc/namespaceImports2/api-extractor-scenarios.api.json
2 parents f423294 + fd20ea0 commit 6bfbc7a

File tree

16 files changed

+246
-199
lines changed

16 files changed

+246
-199
lines changed

apps/api-extractor/src/collector/CollectorEntity.ts

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -175,27 +175,6 @@ export class CollectorEntity {
175175
return false;
176176
}
177177

178-
/**
179-
* Whether the entity has any parent entities.
180-
*
181-
* @remarks
182-
* In the example below:
183-
*
184-
* ```ts
185-
* declare function add(): void;
186-
* declare namespace calculator {
187-
* export {
188-
* add
189-
* }
190-
* }
191-
* ```
192-
*
193-
* The `CollectorEntity` for `calculator` is the parent of the `CollectorEntity` for `add`.
194-
*/
195-
public get hasParents(): boolean {
196-
return this._localExportNamesByParent.size > 0;
197-
}
198-
199178
/**
200179
* Return the first consumable parent that exports this entity. If there is none, returns
201180
* `undefined`.

0 commit comments

Comments
 (0)