UNPKG

@progress/kendo-react-pdf

Version:

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

18 lines (17 loc) 979 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'; /** * Provides a function that saves the content of a DOM element as a PDF file. * The function is also used by the `Grid` component when the `pdf` prop is set to `true`. */ export declare const saveGridPDF: (gridInnerWrapper: any, pdfExportOptions?: PDFExportProps, callback?: () => void) => void; /** * @hidden */ export declare function provideSaveGridPDF(savePDF: (domElement: HTMLElement, options?: PDFExportProps, callback?: () => void) => void): (gridInnerWrapper: any, pdfExportOptions?: PDFExportProps, callback?: () => void) => void;