2023-09-27 11:57:33 +00:00
|
|
|
/*
|
|
|
|
* @Author: Kane
|
|
|
|
* @Date: 2023-09-27 14:13:47
|
|
|
|
* @LastEditors: Kane
|
|
|
|
* @FilePath: /task_schedule/src/utils/fileUpload.ts
|
|
|
|
* @Description: 文件上传相关
|
|
|
|
*
|
|
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
|
|
*/
|
|
|
|
|
|
|
|
interface FileUploadResponse
|
|
|
|
{
|
|
|
|
success: boolean;
|
|
|
|
message: string;
|
|
|
|
fileList: string[];
|
|
|
|
}
|
2023-10-17 09:44:14 +00:00
|
|
|
|
|
|
|
export {
|
|
|
|
type FileUploadResponse
|
|
|
|
};
|