Skip to content

Commit a935a9c

Browse files
committed
min and max optional in extendedBounds (555)
1 parent f40c4b7 commit a935a9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

specification/_types/aggregations/bucket.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -488,11 +488,11 @@ export class ExtendedBounds<T> {
488488
/**
489489
* Maximum value for the bound.
490490
*/
491-
max: T
491+
max?: T
492492
/**
493493
* Minimum value for the bound.
494494
*/
495-
min: T
495+
min?: T
496496
}
497497

498498
export class HistogramAggregation extends BucketAggregationBase {

0 commit comments

Comments
 (0)