UNPKG

bitcoin-inscription-viewer

Version:

🔍 A robust, production-ready React/TypeScript library for viewing Bitcoin Ordinals inscriptions with advanced optimization features including LRU caching, LaserEyes wallet integration, virtual scrolling, and performance monitoring

17 lines 629 B
interface DownloadRendererProps { src: string; mimeType: string; fileExtension?: string; maxHeight?: number; showControls?: boolean; displayName?: string; description?: string; fileSize?: number; } /** * Download-only renderer for files that can't be displayed inline * (Archives, executables, documents, etc.) */ export declare function DownloadRenderer({ src, mimeType, fileExtension, maxHeight, showControls, displayName, description, fileSize }: DownloadRendererProps): import("react/jsx-runtime").JSX.Element; export default DownloadRenderer; //# sourceMappingURL=DownloadRenderer.d.ts.map