| 2 | * 已上传的图片对象 Model |
| 3 | */ |
| 4 | export interface UploadedImageModel { |
| 5 | type: string |
| 6 | uuid: string |
| 7 | sha: string |
| 8 | dir: string |
| 9 | path: string |
| 10 | name: string |
| 11 | size: number |
| 12 | deleting: boolean |
| 13 | checked: boolean |
| 14 | active?: boolean |
| 15 | deployed?: boolean |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * 上传列表的图片对象 Model |
nothing calls this directly
no outgoing calls
no test coverage detected