Generalized frontend model store (#193)

This commit is contained in:
Gregory Schier
2025-03-31 11:56:17 -07:00
committed by GitHub
parent ce885c3551
commit f1757ae427
201 changed files with 2185 additions and 2865 deletions

6
src-web/lib/settings.ts Normal file
View File

@@ -0,0 +1,6 @@
import { invoke } from '@tauri-apps/api/core';
import type { Settings } from '@yaakapp-internal/models';
export function getSettings(): Promise<Settings> {
return invoke<Settings>('plugin:yaak-models|get_settings');
}