pdf-annotator-react
Version:
A React component library for PDF annotation
8 lines (7 loc) • 396 B
TypeScript
import { BaseAnnotationComponent } from './BaseAnnotation';
import { AnnotationMode, AnnotationType } from '../../types';
export declare class PinAnnotation extends BaseAnnotationComponent {
static supportsAnnotationType(type: AnnotationType): boolean;
static getAnnotationModeForType(type: AnnotationType): AnnotationMode | null;
render(): import("react/jsx-runtime").JSX.Element;
}