UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

11 lines (10 loc) 365 B
import * as React from 'react'; import type { UploadRef } from './Upload'; import type { UploadProps } from './interface'; export type DraggerProps = UploadProps & { height?: number; }; declare const Dragger: React.ForwardRefExoticComponent<UploadProps<any> & { height?: number | undefined; } & React.RefAttributes<UploadRef<any>>>; export default Dragger;