UNPKG

react-simple-upload

Version:

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

11 lines (10 loc) 303 B
/// <reference types="react" /> import './index.scss'; interface BtnProps { children: JSX.Element | string; directory?: boolean; single?: boolean; attributes?: string; } export declare const UploaderBtn: ({ children, directory, single, attributes }: BtnProps) => JSX.Element; export {};