minishouyin/node_modules/antd/lib/upload/Dragger.d.ts

11 lines
365 B
TypeScript
Raw Permalink Normal View History

2025-11-12 11:35:57 +08:00
import * as React from 'react';
import type { UploadProps } from './interface';
import type { UploadRef } from './Upload';
export type DraggerProps<T = any> = UploadProps<T> & {
height?: number;
};
declare const Dragger: React.ForwardRefExoticComponent<UploadProps<any> & {
height?: number;
} & React.RefAttributes<UploadRef<any>>>;
export default Dragger;