UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

9 lines (8 loc) 403 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;