mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-22 01:40:29 +00:00
13 lines
298 B
TypeScript
13 lines
298 B
TypeScript
import { Uppy, Locale } from './CommonTypes';
|
|
|
|
export interface DragDropProps {
|
|
uppy: Uppy;
|
|
locale?: Locale;
|
|
}
|
|
|
|
/**
|
|
* React component that renders an area in which files can be dropped to be
|
|
* uploaded.
|
|
*/
|
|
declare const DragDrop: React.ComponentType<DragDropProps>;
|
|
export default DragDrop;
|