termix / src /modules /settings /openSettingsWindow.ts
lekmikdok's picture
Prepare Terax for web deployment
50fe3c9 verified
Raw
History Blame Contribute Delete
285 Bytes
import { invoke } from "@tauri-apps/api/core";
export type SettingsTab =
| "general"
| "shortcuts"
| "models"
| "agents"
| "about";
export async function openSettingsWindow(tab?: SettingsTab): Promise<void> {
await invoke("open_settings_window", { tab: tab ?? null });
}