mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-25 11:40:04 +08:00
1719748a29
* chore: eslint add consistent-type-imports * fix avatar * Update Item.tsx
22 lines
686 B
TypeScript
22 lines
686 B
TypeScript
import Dragger from './Dragger';
|
|
import type { UploadProps } from './Upload';
|
|
import InternalUpload, { LIST_IGNORE } from './Upload';
|
|
|
|
export { UploadProps, UploadListProps, UploadChangeParam, RcFile } from './interface';
|
|
export { DraggerProps } from './Dragger';
|
|
|
|
type InternalUploadType = typeof InternalUpload;
|
|
interface UploadInterface<T = any> extends InternalUploadType {
|
|
<U extends T>(
|
|
props: React.PropsWithChildren<UploadProps<U>> & React.RefAttributes<any>,
|
|
): React.ReactElement;
|
|
Dragger: typeof Dragger;
|
|
LIST_IGNORE: string;
|
|
}
|
|
|
|
const Upload = InternalUpload as UploadInterface;
|
|
Upload.Dragger = Dragger;
|
|
Upload.LIST_IGNORE = LIST_IGNORE;
|
|
|
|
export default Upload;
|