baocun
This commit is contained in:
@@ -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 };
|
||||
Reference in New Issue
Block a user