chore: release v0.26.4
This commit is contained in:
@@ -2295,6 +2295,24 @@ export namespace main {
|
||||
this.count = source["count"];
|
||||
}
|
||||
}
|
||||
export class CompactResult {
|
||||
path: string;
|
||||
backend: string;
|
||||
before: number;
|
||||
after: number;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new CompactResult(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.path = source["path"];
|
||||
this.backend = source["backend"];
|
||||
this.before = source["before"];
|
||||
this.after = source["after"];
|
||||
}
|
||||
}
|
||||
export class ContestBandRow {
|
||||
band: string;
|
||||
count: number;
|
||||
|
||||
Reference in New Issue
Block a user