Fix: Optimize code and fix ts type errors #9869 (#10666)

### What problem does this PR solve?

Fix: Optimize code and fix ts type errors #9869

### Type of change

- [x] Bug Fix (non-breaking change which fixes an issue)
This commit is contained in:
chanx
2025-10-20 15:59:56 +08:00
committed by GitHub
parent cc703da747
commit de46b0d46e
18 changed files with 377 additions and 267 deletions

View File

@ -57,6 +57,6 @@ export interface IFileLogItem {
update_time: number;
}
export interface IFileLogList {
logs: IFileLogItem[];
logs: Array<IFileLogItem & DocumentLog>;
total: number;
}