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 • 663 B
TypeScript
interface IframeRendererProps {
src: string;
mimeType: string;
fileExtension?: string;
maxHeight?: number;
showControls?: boolean;
allowScripts?: boolean;
allowForms?: boolean;
allowPopups?: boolean;
showSecurityWarning?: boolean;
}
/**
* Enhanced iframe renderer optimized for Bitcoin ordinals with recursive content support
*/
export declare function IframeRenderer({ src, mimeType, fileExtension, maxHeight, showControls, allowScripts, allowForms, allowPopups, showSecurityWarning }: IframeRendererProps): import("react/jsx-runtime").JSX.Element;
export default IframeRenderer;
//# sourceMappingURL=IframeRenderer.d.ts.map