UNPKG

antd-hz

Version:

华卓科技基于 antd 5.0 定制的组件库

9 lines (8 loc) 404 B
import * as React from 'react'; import type { UploadFile, UploadListProps } from '../interface'; interface UploadListRef { handlePreview: (file: UploadFile, e?: React.SyntheticEvent<HTMLElement>) => void; handleDownload: (file: UploadFile) => void; } declare const UploadList: React.ForwardRefExoticComponent<UploadListProps<any> & React.RefAttributes<UploadListRef>>; export default UploadList;