uppy/packages/@uppy/react/src/FileInput.d.ts
Antoine du Hamel 5630f7dc07
tools: enable linter for TypeScript (#2997)
* tools: enable linter for TypeScript files and code snippets

* types: remove remaning namespaces

* tools: remove unused Babel decorator plugin
2021-07-13 14:28:14 +02:00

11 lines
363 B
TypeScript

import type { FileInputOptions } from '@uppy/file-input'
import { 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