/** *

Information about a document that matches the search request.

*/ export interface _Hit { /** *

The document ID of a document that matches the search request.

*/ id?: string; /** *

The fields returned from a document that matches the search request.

*/ fields?: { [key: string]: Array | Iterable; } | Iterable<[string, Array | Iterable]>; /** *

The expressions returned from a document that matches the search request.

*/ exprs?: { [key: string]: string; } | Iterable<[string, string]>; /** *

The highlights returned from a document that matches the search request.

*/ highlights?: { [key: string]: string; } | Iterable<[string, string]>; } export interface _UnmarshalledHit extends _Hit { /** *

The fields returned from a document that matches the search request.

*/ fields?: { [key: string]: Array; }; /** *

The expressions returned from a document that matches the search request.

*/ exprs?: { [key: string]: string; }; /** *

The highlights returned from a document that matches the search request.

*/ highlights?: { [key: string]: string; }; }