mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-08-17 00:52:09 +02:00
7 lines
188 B
TypeScript
7 lines
188 B
TypeScript
import type { Settings } from "@yaakapp-internal/models";
|
|
import { rpc } from "./rpc";
|
|
|
|
export function getSettings(): Promise<Settings> {
|
|
return rpc<Settings>("models_get_settings");
|
|
}
|