UNPKG

@vue-pdf-viewer/viewer

Version:

A vue-pdf-viewer component for Vue and Nuxt. Suitable for vue-pdf document.

7 lines (6 loc) 275 B
import { type Annotation } from '@vue-pdf-viewer/shared'; export default function useAnnotationEvents(): { emitAnnotationCreated: (data: Annotation) => void; emitAnnotationUpdated: (data: Annotation) => void; emitAnnotationDeleted: (data: Annotation) => void; };