UNPKG

@mantine/core

Version:

React components library focused on usability, accessibility and developer experience

10 lines (9 loc) 297 B
export interface HighlightChunk { chunk: string; highlighted: boolean; color?: string; } export interface HighlighterOptions { wholeWord?: boolean; } export declare function highlighter(value: string, _highlight: string | string[], options?: HighlighterOptions): HighlightChunk[];