pdf-annotator-react
Version:
A React component library for PDF annotation
13 lines (12 loc) • 387 B
TypeScript
import React from 'react';
import { Point, TagInterface } from '../types';
interface PinPopupProps {
position: Point;
onSubmit: (selectedTags: TagInterface[], content?: string) => void;
onCancel: () => void;
availableTags: TagInterface[];
initialTags?: TagInterface[];
initialContent?: string;
}
export declare const PinPopup: React.FC<PinPopupProps>;
export {};