mirror of
https://github.com/vector-im/hydrogen-web.git
synced 2024-12-23 19:45:05 +01:00
20 lines
316 B
JavaScript
20 lines
316 B
JavaScript
class Room {
|
|
|
|
constructor(roomId, storage) {
|
|
this._roomId = roomId;
|
|
this._storage = storage;
|
|
this._summary = new RoomSummary(this._roomId, this._storage);
|
|
}
|
|
|
|
async applyInitialSync(roomResponse, membership) {
|
|
|
|
}
|
|
|
|
async applyIncrementalSync(roomResponse, membership) {
|
|
|
|
}
|
|
|
|
async loadFromStorage() {
|
|
|
|
}
|
|
} |