16 lines
316 B
TypeScript
16 lines
316 B
TypeScript
interface Settings {
|
|
host_language: string;
|
|
libretranslate_base_url: string;
|
|
ui_direction: number;
|
|
whisper_model: string;
|
|
}
|
|
|
|
interface WhisperModel {
|
|
model: string;
|
|
download_status: boolean;
|
|
expected_size: number;
|
|
last_hash: string;
|
|
bytes_done: string;
|
|
bytes_total: string;
|
|
}
|