UNPKG

react-pdf

Version:

Display PDFs in your React app as easily as if they were images.

10 lines (9 loc) 413 B
/// <reference types="react" /> import type { StructTreeContent } from 'pdfjs-dist/types/src/display/api.js'; import type { StructTreeNodeWithExtraAttributes } from './shared/types.js'; type StructTreeItemProps = { className?: string; node: StructTreeNodeWithExtraAttributes | StructTreeContent; }; export default function StructTreeItem({ className, node }: StructTreeItemProps): JSX.Element; export {};