captide
Version:
Get hundreds of thousands of financial documents into your AI app 🚀
17 lines (16 loc) • 466 B
TypeScript
import React from 'react';
interface PDFViewerProps {
sasUrl: string;
className?: string;
style?: React.CSSProperties;
zoomLevel: number;
highlightedElementId?: string | null;
}
/**
* PDF Viewer Component using PDF.js
*
* Renders PDFs from SAS URLs with robust error handling and high-quality rendering.
* Leverages PDF.js's built-in lazy loading capabilities.
*/
declare const PDFViewer: React.FC<PDFViewerProps>;
export default PDFViewer;