UNPKG

@cantoo/pdf-lib

Version:

Create and modify PDF files with JavaScript

11 lines (9 loc) 237 B
import PDFImage from './PDFImage'; export default class PDFSvg { svg: string; images: Record<string, PDFImage>; constructor(svg: string, images: Record<string, PDFImage> = {}) { this.svg = svg; this.images = images; } }