UNPKG

linkmore-design

Version:

🌈 πŸš€lmη»„δ»ΆεΊ“γ€‚πŸš€

15 lines (14 loc) β€’ 658 B
/// <reference types="react" /> import Dragger from './Dragger'; import type { UploadProps } from './Upload'; import InternalUpload from './Upload'; export type { DraggerProps } from './Dragger'; export type { RcFile, UploadChangeParam, UploadFile, UploadListProps, UploadProps } from './interface'; declare 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; } declare const Upload: UploadInterface<any>; export default Upload;