UNPKG

@dineug/erd-editor

Version:

Entity-Relationship Diagram Editor

9 lines (8 loc) 302 B
import { FC } from '@dineug/r-html'; import { findAll } from 'highlight-words-core'; export type HighlightedTextProps = Parameters<typeof findAll>[0] & { searchWords: string[]; textToHighlight: string; }; declare const HighlightedText: FC<HighlightedTextProps>; export default HighlightedText;