UNPKG

antd-mobile

Version:

基于 React 的移动设计规范实现

16 lines (15 loc) 453 B
export interface ImagePickerPropTypes { style?: {}; files?: Array<{}>; onChange?: (files: Array<{}>, operationType: string, index?: number) => void; styles?: any; prefixCls?: string; className?: string; onImageClick?: (index?: number, files?: Array<{}>) => void; onAddImageClick?: () => void; selectable?: boolean; } export interface ImageRollProps { onCancel: () => void; onSelected: (imgObj: {}) => void; }