This commit is contained in:
josc146
2023-05-13 23:36:30 +08:00
parent 08e024a998
commit 80bfb09972
10 changed files with 170 additions and 32 deletions

View File

@@ -9,12 +9,12 @@ export enum ModelStatus {
export type ModelSourceItem = {
name: string;
desc: { [lang: string]: string; };
size: number;
lastUpdated: string;
SHA256: string;
url: string;
downloadUrl: string;
desc?: { [lang: string]: string; };
SHA256?: string;
url?: string;
downloadUrl?: string;
isLocal?: boolean;
isDownloading?: boolean;
lastUpdatedMs?: number;