UNPKG

jagran-react-doc-viewer

Version:

A highly customizable React document viewer with support for PDF, DOCX, PPTX, images, and more

20 lines 592 B
import React from 'react'; import { NavigationConfig, DocumentSource } from '../types'; interface NavigationProps { config: NavigationConfig; currentDocument: DocumentSource; currentIndex: number; totalDocuments: number; zoom?: number; onPrevious: () => void; onNext: () => void; onDownload?: () => void; onPrint?: () => void; onFullscreen?: () => void; onZoomIn?: () => void; onZoomOut?: () => void; onZoomReset?: () => void; } export declare const Navigation: React.FC<NavigationProps>; export {}; //# sourceMappingURL=Navigation.d.ts.map