mirror of
https://gitee.com/dapppp/ruoyi-plus-vben5.git
synced 2026-03-22 12:18:57 +08:00
refactor: type/注释优化 去除大量any
This commit is contained in:
@@ -21,12 +21,12 @@ export function ossConfigInfo(ossConfigId: ID) {
|
||||
}
|
||||
|
||||
// 添加新的OSS配置
|
||||
export function ossConfigAdd(data: any) {
|
||||
export function ossConfigAdd(data: Partial<OssConfig>) {
|
||||
return requestClient.postWithMsg<void>(Api.root, data);
|
||||
}
|
||||
|
||||
// 更新现有的OSS配置
|
||||
export function ossConfigUpdate(data: any) {
|
||||
export function ossConfigUpdate(data: Partial<OssConfig>) {
|
||||
return requestClient.putWithMsg<void>(Api.root, data);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user