UNPKG

@pdfme/schemas

Version:

TypeScript base PDF generator and React base UI. Open source, developed by the community, and completely free to use under the MIT license!

15 lines (14 loc) 347 B
import type { PDFDocument, PDFPage } from '@pdfme/pdf-lib'; export type LinkAnnotationRect = { x: number; y: number; width: number; height: number; }; export declare const addUriLinkAnnotation: (arg: { pdfDoc: PDFDocument; page: PDFPage; uri: string; rect: LinkAnnotationRect; borderWidth?: number; }) => void;