UNPKG

@arteneo/forge-uppy

Version:
13 lines (12 loc) 471 B
import React from "react"; import UppyFileType from "../definitions/UppyFileType"; import UppyType from "../definitions/UppyType"; interface UppyDragDropProps { inputRef: React.RefObject<HTMLInputElement>; addFiles: (files: UppyFileType[]) => void; disabled: boolean; uppy: UppyType; } declare const UppyDragDrop: ({ inputRef, addFiles, disabled, uppy }: UppyDragDropProps) => React.JSX.Element; export default UppyDragDrop; export { UppyDragDropProps };