UNPKG

react-pdf-ner-annotator

Version:

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

9 lines (8 loc) 224 B
/// <reference types="react" /> interface Props { loading: boolean; error?: string; message?: string; } declare const OcrInfo: ({ loading, error, message }: Props) => JSX.Element; export default OcrInfo;