UNPKG

@vue-pdf-viewer/viewer

Version:

The PDF Viewer component for Vue 3 and Nuxt

6 lines (5 loc) 325 B
import { type Ref } from 'vue'; import type { PDFDocumentProxy } from 'pdfjs-dist'; import type { UsePdfCommentsReturn, ViewerPdfPage } from '@/utils/types'; declare const usePdfComments: (pdfDocProxy: Ref<PDFDocumentProxy | undefined>, pdfPages: Ref<ViewerPdfPage[]>) => UsePdfCommentsReturn; export default usePdfComments;