chore: regenerate wails bindings (serial CW keyer config fields)

This commit is contained in:
2026-07-23 19:02:24 +02:00
parent f7f801cdb7
commit 9be3f9147b
+6
View File
@@ -3035,6 +3035,9 @@ export namespace main {
autospace: boolean; autospace: boolean;
use_ptt: boolean; use_ptt: boolean;
serial_echo: boolean; serial_echo: boolean;
type: string;
cw_key_line: string;
cw_invert: boolean;
engine: string; engine: string;
esc_clears_call: boolean; esc_clears_call: boolean;
send_on_type: boolean; send_on_type: boolean;
@@ -3061,6 +3064,9 @@ export namespace main {
this.autospace = source["autospace"]; this.autospace = source["autospace"];
this.use_ptt = source["use_ptt"]; this.use_ptt = source["use_ptt"];
this.serial_echo = source["serial_echo"]; this.serial_echo = source["serial_echo"];
this.type = source["type"];
this.cw_key_line = source["cw_key_line"];
this.cw_invert = source["cw_invert"];
this.engine = source["engine"]; this.engine = source["engine"];
this.esc_clears_call = source["esc_clears_call"]; this.esc_clears_call = source["esc_clears_call"];
this.send_on_type = source["send_on_type"]; this.send_on_type = source["send_on_type"];