UNPKG

@afzalimdad9/react-file-preview

Version:

The url previewer is built using native html elements for previewing url of files of the following type

11 lines (10 loc) 310 B
/// <reference types="react" /> interface Props { mimeType: string; src: string; onError: (e: any) => void; onLoad: (value: boolean) => void; autoPlay: boolean; } export default function DriverSelector({ mimeType, src, onError, onLoad, autoPlay }: Props): JSX.Element; export {};