UNPKG

@progress/kendo-react-editor

Version:
26 lines (25 loc) 778 B
import * as React from 'react'; import { ToolProps } from './ToolProps'; import { EditorToolsSettings } from './../config/toolsSettings'; import { PDFExportProps } from '@progress/kendo-react-pdf'; /** * @hidden */ export interface PdfProps extends ToolProps { /** * The settings of the tool. Use it to modify the tool appearance. */ settings?: EditorToolsSettings.PdfSettings; /** * The options which will be passed to the [`savePDF`]({% slug api_pdf_savepdf %}) function. */ savePdfOptions?: PDFExportProps; /** * The callback which will be passed to the [`savePDF`]({% slug api_pdf_savepdf %}) function. */ savePdfCallback?: () => void; } /** * @hidden */ export declare const Pdf: React.FunctionComponent<PdfProps>;