17 lines
325 B
TypeScript
17 lines
325 B
TypeScript
import { EsPit } from "./es-pit.interface";
|
|
|
|
/**
|
|
* Structure of search metadata
|
|
*/
|
|
export interface SearchInfo {
|
|
/**
|
|
* Previous search saved PIT
|
|
*/
|
|
pit: EsPit;
|
|
|
|
/**
|
|
* Special tiebreaker used by Elasticsearch.
|
|
* Indicates the starting point of next search
|
|
*/
|
|
tiebreaker: unknown[];
|
|
} |