@configurator/ravendb
Version:
RavenDB client for Node.js
11 lines (10 loc) • 357 B
TypeScript
import { QueryResultHighlightings } from "../GenericQueryResult";
export declare class Highlightings {
private _highlightings;
private _fieldName;
constructor(fieldName: string);
get fieldName(): string;
get resultIndents(): string[];
getFragments(key: string): string[];
update(highlightings: QueryResultHighlightings): void;
}