interface ImgInfo { uid: string; name: string; status: 'error' | 'success' | 'done' | 'uploading' | 'removed'; fileCode: string; url: string; } export interface CarouselDataItem { titie: string; objectFit: 'fill' | 'contain' | 'cover'; target: '_blank' | '_self' | 'none'; jumpType: 'menu' | 'link'; viewType?: string; linkUrl?: string; imgInfo: ImgInfo; sort?: any; } export {};