UNPKG

react-simple-upload

Version:

a react Uploader library implements html5 file upload and provides multiple simultaneous, stable, fault tolerant and resumable uploads

8 lines (7 loc) 281 B
/// <reference types="react" /> import { LibFile } from 'simple-uploader.js'; import './index.scss'; export declare const UploaderList: ({ fileList, children }: { fileList: LibFile[]; children?: ((fileList: LibFile[]) => JSX.Element) | undefined; }) => JSX.Element | null;