import { ElasticResultHit } from "./elastic-result-hit";
export interface ElasticResult {
  took: number;
  timed_out: boolean;
  _shards: {
    total: number;
    successful: number;
    skipped: number;
    failed: number;
  };
  hits: {
    total: number;
    max_score: number;
    hits: ElasticResultHit[];
  };
  aggregations: any;
}
