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

14 lines 508 B
interface CodeRendererProps { content: string; mimeType: string; fileExtension?: string; maxHeight?: number; showControls?: boolean; language?: string; } /** * Enhanced code renderer with syntax highlighting, search, and developer tools */ export declare function CodeRenderer({ content, mimeType, fileExtension, maxHeight, showControls, language }: CodeRendererProps): import("react/jsx-runtime").JSX.Element; export default CodeRenderer; //# sourceMappingURL=CodeRenderer.d.ts.map