mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-01-14 13:13:31 +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');
|
|
}
|