@mantine/core
Version:
React components library focused on usability, accessibility and developer experience
9 lines (8 loc) • 330 B
TypeScript
import type { HighlightFactory, HighlightProps, HighlightTerm } from './Highlight';
export { Highlight } from './Highlight';
export type { HighlightProps, HighlightFactory, HighlightTerm };
export declare namespace Highlight {
type Props = HighlightProps;
type Factory = HighlightFactory;
type Term = HighlightTerm;
}