mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-18 09:05:55 +00:00
* tools: enable linter for TypeScript files and code snippets * types: remove remaning namespaces * tools: remove unused Babel decorator plugin
11 lines
363 B
TypeScript
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
|