UNPKG

document-viewer-ts

Version:

PDF and MS Doc viewer written in TypeScript for React and vanilla JavaScript

9 lines (8 loc) 186 B
import React from 'react'; type ViewerProps = { documentId: string; documentUrl: string; workerSrc: string; }; export declare const Viewer: React.FC<ViewerProps>; export {};