UPDATE: update new language patch

This commit is contained in:
2025-08-21 21:44:16 +07:00
parent ba58d24e06
commit b2adcd7981
13 changed files with 727 additions and 178 deletions

View File

@@ -8,7 +8,7 @@ import {Call as $Call, Create as $Create} from "@wailsio/runtime";
/**
* @param {string} path
* @returns {Promise<[string, string]> & { cancel(): void }}
* @returns {Promise<[boolean, string, string, string]> & { cancel(): void }}
*/
export function GetLanguage(path) {
let $resultPromise = /** @type {any} */($Call.ByID(3450750492, path));
@@ -19,7 +19,7 @@ export function GetLanguage(path) {
* @param {string} path
* @param {string} text
* @param {string} voice
* @returns {Promise<boolean> & { cancel(): void }}
* @returns {Promise<[boolean, string]> & { cancel(): void }}
*/
export function SetLanguage(path, text, voice) {
let $resultPromise = /** @type {any} */($Call.ByID(2793672496, path, text, voice));