forked from mystiq/hydrogen-web
small cleanup
This commit is contained in:
parent
5d87d8bde3
commit
a3e294bb60
1 changed files with 1 additions and 8 deletions
|
@ -148,15 +148,8 @@ class DeviceMessageRoomKey extends IncomingRoomKey {
|
||||||
}
|
}
|
||||||
|
|
||||||
class BackupRoomKey extends IncomingRoomKey {
|
class BackupRoomKey extends IncomingRoomKey {
|
||||||
private _roomId: string;
|
constructor(private _roomId: string, private _sessionId: string, private _backupInfo: object) {
|
||||||
private _sessionId: string;
|
|
||||||
private _backupInfo: string;
|
|
||||||
|
|
||||||
constructor(roomId, sessionId, backupInfo) {
|
|
||||||
super();
|
super();
|
||||||
this._roomId = roomId;
|
|
||||||
this._sessionId = sessionId;
|
|
||||||
this._backupInfo = backupInfo;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
get roomId() { return this._roomId; }
|
get roomId() { return this._roomId; }
|
||||||
|
|
Loading…
Reference in a new issue