UNPKG

@progress/kendo-react-pdf

Version:

React PDF Processing enables you to export single- and multi-page content in PDF. KendoReact PDF Processing package

17 lines (16 loc) 786 B
/** * @license *------------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the package root for more information *------------------------------------------------------------------------------------------- */ import { PDFExportProps } from './PDFExportProps.js'; /** * Saves the content of a DOM element to a PDF file. * * @param domElement - The root DOM element to save to a PDF file. * @param options - The export options. * @param callback - The callback to be executed after the PDF is saved. */ export declare function savePDF(domElement: HTMLElement, options?: PDFExportProps, callback?: () => void): void;