feat: added extra stats for contests
This commit is contained in:
@@ -3367,6 +3367,8 @@ export namespace qso {
|
||||
best_60: number;
|
||||
gaps: Gap[];
|
||||
rate: Bucket[];
|
||||
rate_ops: string[];
|
||||
rate_by_op: number[][];
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new Stats(source);
|
||||
@@ -3404,6 +3406,8 @@ export namespace qso {
|
||||
this.best_60 = source["best_60"];
|
||||
this.gaps = this.convertValues(source["gaps"], Gap);
|
||||
this.rate = this.convertValues(source["rate"], Bucket);
|
||||
this.rate_ops = source["rate_ops"];
|
||||
this.rate_by_op = source["rate_by_op"];
|
||||
}
|
||||
|
||||
convertValues(a: any, classs: any, asMap: boolean = false): any {
|
||||
|
||||
Reference in New Issue
Block a user