This commit is contained in:
2026-06-06 01:43:27 +02:00
parent b4e104f5a2
commit 176cc0e62b
7 changed files with 323 additions and 2 deletions
+18
View File
@@ -973,6 +973,24 @@ export namespace main {
}
}
export class POTASyncResult {
fetched: number;
updated: number;
already_tagged: number;
unmatched: number;
static createFrom(source: any = {}) {
return new POTASyncResult(source);
}
constructor(source: any = {}) {
if ('string' === typeof source) source = JSON.parse(source);
this.fetched = source["fetched"];
this.updated = source["updated"];
this.already_tagged = source["already_tagged"];
this.unmatched = source["unmatched"];
}
}
export class QSLDefaults {
qsl_sent: string;
qsl_rcvd: string;