mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-29 21:13:21 +00:00
* tools: enable linter for TypeScript files and code snippets * types: remove remaning namespaces * tools: remove unused Babel decorator plugin
11 lines
400 B
TypeScript
11 lines
400 B
TypeScript
import type { DragDropOptions } from '@uppy/drag-drop'
|
|
import { ToUppyProps } from './CommonTypes'
|
|
|
|
export type DragDropProps = ToUppyProps<DragDropOptions> & React.BaseHTMLAttributes<HTMLDivElement>
|
|
|
|
/**
|
|
* React component that renders an area in which files can be dropped to be
|
|
* uploaded.
|
|
*/
|
|
declare const DragDropComponent: React.ComponentType<DragDropProps>
|
|
export default DragDropComponent
|