@fe6/water-pro
Version:
An enterprise-class UI design language and Vue-based implementation
30 lines (29 loc) • 564 B
TypeScript
/** @format */
export interface UploadValueType {
url: string;
name: string;
}
export interface UploadResponse {
data: any;
code: number;
refresh: boolean;
message: string;
}
export interface FileItem {
uid: string;
name?: string;
status?: string;
response?: UploadResponse;
url?: string;
type?: string;
size: number;
originFileObj: any;
}
export interface FileInfo {
file: FileItem;
fileList: FileItem[];
}
export interface WelcomeValueType {
message: string;
messageAttachContent: any[];
}