Files
yaak/apps/yaak-client/lib/settings.ts
Gregory Schier 7314aedc71 Merge main into proxy branch (formatting and docs)
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-13 12:09:59 -07:00

7 lines
209 B
TypeScript

import { invoke } from "@tauri-apps/api/core";
import type { Settings } from "@yaakapp-internal/models";
export function getSettings(): Promise<Settings> {
return invoke<Settings>("models_get_settings");
}