import { BucketResult } from './BucketResult'; export class IntermediateAggregationResult { public results: Record; public rest: BucketResult[]; constructor() { this.results = {}; this.rest = []; } }