diff --git a/src/aggregators.ts b/src/aggregators.ts index bba43ab..672364f 100644 --- a/src/aggregators.ts +++ b/src/aggregators.ts @@ -654,8 +654,13 @@ export namespace aggregator { /** * The {@link Comparator} to apply against the extracted values. + * @private */ protected comparator?: AggregatorComparator + + /** + * The property that results will be ordered by. + */ protected property?: string /** @@ -804,7 +809,7 @@ export namespace aggregator { * various {@link EntryAggregator} classes, but in some cases provide additional type * safety. They also tend to make the code more readable, especially if imported * statically, so their use is strongly encouraged in lieu of direct construction - * of EntryAggregator} classes. + * of {@link EntryAggregator} classes. */ export class Aggregators { diff --git a/src/filters.ts b/src/filters.ts index c38c7c3..0084a64 100644 --- a/src/filters.ts +++ b/src/filters.ts @@ -872,7 +872,7 @@ export namespace filter { } /** - * A {@code java.util.function.Predicate} based {@link ExtractorFilter}. + * A predicate based {@link ExtractorFilter}. */ export class PredicateFilter extends ExtractorFilter { diff --git a/typedoc.json b/typedoc.json index c30c163..90c45b0 100644 --- a/typedoc.json +++ b/typedoc.json @@ -13,7 +13,8 @@ "excludeExternals": false, "disableSources": true, "exclude": [ - "**/grpc/**" + "**/grpc/**", + "**/node_modules/**" ] }