@qite/tide-client
Version:
Frontend client for Tide
18 lines (17 loc) • 340 B
TypeScript
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;
}