File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -654,8 +654,13 @@ export namespace aggregator {
654
654
655
655
/**
656
656
* The {@link Comparator} to apply against the extracted values.
657
+ * @private
657
658
*/
658
659
protected comparator ?: AggregatorComparator
660
+
661
+ /**
662
+ * The property that results will be ordered by.
663
+ */
659
664
protected property ?: string
660
665
661
666
/**
@@ -804,7 +809,7 @@ export namespace aggregator {
804
809
* various {@link EntryAggregator} classes, but in some cases provide additional type
805
810
* safety. They also tend to make the code more readable, especially if imported
806
811
* statically, so their use is strongly encouraged in lieu of direct construction
807
- * of EntryAggregator} classes.
812
+ * of { @link EntryAggregator} classes.
808
813
*/
809
814
export class Aggregators {
810
815
Original file line number Diff line number Diff line change @@ -872,7 +872,7 @@ export namespace filter {
872
872
}
873
873
874
874
/**
875
- * A { @code java.util.function.Predicate} based {@link ExtractorFilter}.
875
+ * A predicate based {@link ExtractorFilter}.
876
876
*/
877
877
export class PredicateFilter
878
878
extends ExtractorFilter {
Original file line number Diff line number Diff line change 13
13
"excludeExternals" : false ,
14
14
"disableSources" : true ,
15
15
"exclude" : [
16
- " **/grpc/**"
16
+ " **/grpc/**" ,
17
+ " **/node_modules/**"
17
18
]
18
19
}
19
20
You can’t perform that action at this time.
0 commit comments