This commit is contained in:
2025-11-20 00:21:22 +08:00
parent c9c2493671
commit d22b29f45d
3 changed files with 96 additions and 9 deletions

View File

@@ -0,0 +1,20 @@
/**
* @author Kane Wang <wangkane@qq.com>
* @date 2025-11-19 21:08:58
* Copyright © CPIC All rights reserved
*/
interface UploadFileResponse
{
success: boolean;
message: string;
fileList: UploadedFile[] | null;
}
interface UploadedFile
{
fileName: string;
localFilePath: string;
}
export { type UploadFileResponse, type UploadedFile };