fix(ui): fix model install event types

This commit is contained in:
psychedelicious 2024-02-24 00:16:56 +11:00 committed by Brandon Rising
parent 2db252af31
commit 5baa79c903

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