mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-23 18:29:09 +00:00
12 lines
366 B
TypeScript
12 lines
366 B
TypeScript
import { ToUppyProps } from './CommonTypes'
|
|
import FileInput = require('@uppy/file-input')
|
|
|
|
export type FileInputProps = ToUppyProps<FileInput.FileInputOptions>
|
|
|
|
/**
|
|
* React component that renders an area in which files can be dropped to be
|
|
* uploaded.
|
|
*/
|
|
declare const FileInputComponent: React.ComponentType<FileInputProps>;
|
|
export default FileInputComponent;
|
|
|