fix(ui): fix model install event types

This commit is contained in:
psychedelicious 2024-02-24 00:16:56 +11:00
parent cdd2f18bbd
commit 7c41b3439a

View File

@ -46,11 +46,11 @@ export type ModelLoadCompletedEvent = {
};
export type ModelInstallDownloadingEvent = {
bytes: string;
bytes: number;
local_path: string;
source: string;
timestamp: number;
total_bytes: string;
total_bytes: number;
id: number;
};