fix(ui): fix model install event types

This commit is contained in:
psychedelicious 2024-02-24 00:16:56 +11:00
parent 135ef9066f
commit 4b106bc903

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;
};