/// import type { CommonPropsType } from '../../types'; import './style'; /** * 图片上传-展示组件 */ export default function UploaderView({ srcList, // 兼容 cloud:和https: 协议,兼容 字符串和字符串数组 alt, gutter, height, width, events, isZoom, isEmptyPlace, className, id, style, }: PropsType): JSX.Element; export interface PropsType extends CommonPropsType { srcList?: string[] | string; alt?: string; isZoom?: boolean; gutter?: number; height?: number; width?: number; isEmptyPlace?: boolean; }