Dragger.d.ts 365 B

12345678910
  1. import * as React from 'react';
  2. import type { UploadProps } from './interface';
  3. import type { UploadRef } from './Upload';
  4. export type DraggerProps<T = any> = UploadProps<T> & {
  5. height?: number;
  6. };
  7. declare const Dragger: React.ForwardRefExoticComponent<UploadProps<any> & {
  8. height?: number;
  9. } & React.RefAttributes<UploadRef<any>>>;
  10. export default Dragger;