Files
med-notes/.pnpm-store/v10/files/b2/aeef40125c3b38028b457df047918f4a16f026b5f7edb460cc6db2e118228b81be396b972102847d919cdf96ea4de76c0382ea19eae8ef25dc2c59a5408244
2025-05-09 05:30:08 +02:00

9 lines
389 B
Plaintext

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): React.ReactElement;
export {};