PgSearchHighlightOptions
Home > @backstage/plugin-search-backend-module-pg
> PgSearchHighlightOptions
Options for highlighting search terms
Signature:
export type PgSearchHighlightOptions = {
useHighlight?: boolean;
maxWords?: number;
minWords?: number;
shortWord?: number;
highlightAll?: boolean;
maxFragments?: number;
fragmentDelimiter?: string;
preTag: string;
postTag: string;
};