mirror of
https://github.com/transloadit/uppy.git
synced 2026-08-02 14:52:24 +00:00
11 lines
405 B
TypeScript
11 lines
405 B
TypeScript
import type { DragDropOptions } from '@uppy/drag-drop'
|
|
import type { 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
|