UNPKG

@pdftron/webviewer-react-toolkit

Version:

A React component library for integrating with PDFTron WebViewer API.

10 lines (9 loc) 214 B
import { FC } from 'react'; export interface OverlayProps { /** * Optional className for the overlay container. */ className?: string; } declare let Overlay: FC<OverlayProps>; export { Overlay };