合同小程序前端代码仓库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
271 B

3 months ago
  1. export type UploadFile = {
  2. url : string;
  3. path ?: string;
  4. name ?: string;
  5. thumb ?: string;
  6. size ?: number;
  7. width ?: number;
  8. height ?: number;
  9. duration ?: number;
  10. type ?: 'image' | 'video';
  11. percent ?: number;
  12. status ?: 'loading' | 'reload' | 'failed' | 'done';
  13. }