mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-30 13:30:31 +00:00
11 lines
368 B
TypeScript
11 lines
368 B
TypeScript
import type { FileInputOptions } from '@uppy/file-input'
|
|
import type { ToUppyProps } from './CommonTypes'
|
|
|
|
export type FileInputProps = ToUppyProps<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
|