UNPKG

react-pdf-ner-annotator

Version:

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

8 lines (7 loc) 240 B
/// <reference types="react" /> import { Entity } from '../interfaces/entity'; declare type Props = { entity?: Entity; }; declare const EntityVisualisation: ({ entity }: Props) => JSX.Element; export default EntityVisualisation;