Rust service refactor: app data, session windows & client config pt 2

This commit is contained in:
2026-03-10 15:46:49 +08:00
parent 341dd48132
commit 858858ab48
23 changed files with 308 additions and 347 deletions

View File

@@ -89,8 +89,8 @@ async getClientConfig() : Promise<AppConfig> {
async saveClientConfig(config: AppConfig) : Promise<null> {
return await TAURI_INVOKE("save_client_config", { config });
},
async openClientConfigManager() : Promise<null> {
return await TAURI_INVOKE("open_client_config_manager");
async openClientConfig() : Promise<null> {
return await TAURI_INVOKE("open_client_config");
},
async openDollEditorWindow(dollId: string | null) : Promise<void> {
await TAURI_INVOKE("open_doll_editor_window", { dollId });