UNPKG

react-pdf-ner-annotator

Version:

A React component to annotate named entities directly onto a PDF.

10 lines (9 loc) 258 B
import { FC } from 'react'; import { Entity } from '../interfaces/entity'; import { Point } from '../interfaces/point'; interface Props { mouseCoords: Point; entity?: Entity; } declare const CursorText: FC<Props>; export default CursorText;