@progress/kendo-react-pdf
Version:
React PDF Processing enables you to export single- and multi-page content in PDF. KendoReact PDF Processing package
21 lines (20 loc) • 671 B
TypeScript
/**
* @license
*-------------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the package root for more information
*-------------------------------------------------------------------------------------------
*/
/**
* Represents the props of a page template component that can be added to the PDFExport component.
*/
export interface PageTemplateProps {
/**
* The number of the current page.
*/
pageNum: number;
/**
* The total number of pages.
*/
totalPages: number;
}