up
This commit is contained in:
@@ -846,6 +846,22 @@ export namespace main {
|
||||
this.file_mod_time = source["file_mod_time"];
|
||||
}
|
||||
}
|
||||
export class DBBackendStatus {
|
||||
active: string;
|
||||
fallback: boolean;
|
||||
error: string;
|
||||
|
||||
static createFrom(source: any = {}) {
|
||||
return new DBBackendStatus(source);
|
||||
}
|
||||
|
||||
constructor(source: any = {}) {
|
||||
if ('string' === typeof source) source = JSON.parse(source);
|
||||
this.active = source["active"];
|
||||
this.fallback = source["fallback"];
|
||||
this.error = source["error"];
|
||||
}
|
||||
}
|
||||
export class DVKMessage {
|
||||
slot: number;
|
||||
label: string;
|
||||
|
||||
Reference in New Issue
Block a user