pdf-annotator-react
Version:
A React component library for PDF annotation
14 lines (13 loc) • 429 B
TypeScript
import React from 'react';
import { Point } from '../types';
import { TagInterface } from 'lingapp-revisao-redacao';
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 {};