UNPKG

@qite/tide-client

Version:
18 lines (17 loc) 340 B
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; }