reactjs-file-preview
Version:
Effortlessly preview images, videos, and PDFs in your React applications with MyFilePreview. This lightweight and customizable component intelligently detects file types and displays them.
13 lines (12 loc) • 337 B
TypeScript
export declare const FILE_TYPES: {
IMAGE: string;
VIDEO: string;
PDF: string;
UNKNOWN: string;
};
export declare const SUPPORTED_EXTENSIONS: {
IMAGE: string[];
VIDEO: string[];
PDF: string[];
};
export declare const PDF_JS_LIB_SRC = "https://cdnjs.cloudflare.com/ajax/libs/pdf.js/2.10.377/pdf.worker.min.js";