mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-25 10:51:57 +01:00
7 lines
209 B
TypeScript
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");
|
|
}
|