jspdf-invoice
v1.0.0
Published
Invoice A4 PDF printing.
Downloads
28
Readme
jsPDF invoice
An invoice template.
Here there is a demo how that print is looking like.
Install
npm i jspdf-invoice -S
Usage
Should look like this:
import { printPDF } from "jspdf-invoice";
document.querySelector(".js-print-pdf").addEventListener("click", function() {
/**
* @type {PrintData} check PrintData interface in src/print/index.d.ts
*/
const printData = {
...
}
printPDF(printData);
});