antd
Version:
An enterprise-class UI design language and React-based implementation
18 lines (17 loc) • 519 B
TypeScript
/// <reference types="react" />
import React from 'react';
import { UploadListProps } from './interface';
export default class UploadList extends React.Component<UploadListProps, any> {
static defaultProps: {
listType: string;
progressAttr: {
strokeWidth: number;
showInfo: boolean;
};
prefixCls: string;
};
handleClose: (file: any) => void;
handlePreview: (file: any, e: any) => void;
componentDidUpdate(): void;
render(): JSX.Element;
}