From 1e51c964cfb982562b252c68110c0f17b5d0d40b Mon Sep 17 00:00:00 2001 From: Tola Leng Date: Fri, 23 May 2025 20:40:14 +0800 Subject: [PATCH] Added PDF Print Function --- application/src/types/jspdf-autotable.d.ts | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 application/src/types/jspdf-autotable.d.ts diff --git a/application/src/types/jspdf-autotable.d.ts b/application/src/types/jspdf-autotable.d.ts new file mode 100644 index 0000000..44a756d --- /dev/null +++ b/application/src/types/jspdf-autotable.d.ts @@ -0,0 +1,9 @@ +import 'jspdf'; + +declare module 'jspdf' { + interface jsPDF { + lastAutoTable: { + finalY: number; + }; + } +} \ No newline at end of file