UNPKG

srpv-js

Version:
18 lines (17 loc) 641 B
import React from "react"; import { PDFViewerMainClassPropsTypes, PDFViewerMainClassStateTypes } from "./types/PDFViewerTypes"; import './App.css'; export default class PDFViewer extends React.Component<PDFViewerMainClassPropsTypes, PDFViewerMainClassStateTypes> { private mainDiv; constructor({ props }: { props: any; }); componentDidMount(): void; onWheelEvent: (event: WheelEvent) => void; increaseScale: () => void; reduceScale: () => void; printDocument: () => Promise<void>; downloadDocument: () => void; loadingDocument: () => JSX.Element; render(): JSX.Element; }