UNPKG

react-bilibili-embed-renderer

Version:

It is better to use Bilibili's embed renderer component for React applications

16 lines (15 loc) 436 B
/// <reference types="react" /> interface BilibiliProp { aid: string; page?: number; isWide?: boolean; highQuality?: boolean; hasDanmaku?: boolean; aspectWidth?: number; aspectHeight?: number; width?: string | number; height?: string | number; iframeClass?: string; } declare const BilibiliEmbedRenderer: (props: BilibiliProp) => JSX.Element; export default BilibiliEmbedRenderer;