uppy/packages/@uppy/react/src/FileInput.d.ts

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