UNPKG

@pdfme/generator

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) 288 B
import type { PDFPage } from '@pdfme/pdf-lib'; export type PdfBox = { x: number; y: number; width: number; height: number; }; export type EmbedPdfBox = { mediaBox: PdfBox; bleedBox: PdfBox; trimBox: PdfBox; sourceBox?: PdfBox; sourcePage?: PDFPage; };