UNPKG

nutui-taro-upgrade

Version:

@nutui/nutui-taro 对京东风格组件库的taro4 版本支持

16 lines (15 loc) 447 B
export type SizeType = 'original' | 'compressed'; export type SourceType = 'album' | 'camera'; export type MediaType = 'image' | 'video' | 'mix'; export type FileItemStatus = 'ready' | 'uploading' | 'success' | 'error'; export declare class FileItem { status: FileItemStatus; message: string; uid: string; name?: string; url?: string; type?: string; path?: string; percentage: string | number; formData: any; }