This repository has been archived on 2022-08-19. You can view files and clone it, but cannot push or open issues or pull requests.
hydrogen-web/room/room.js

20 lines
346 B
JavaScript

class Room {
constructor(roomId, storage, storedSummary) {
this._roomId = roomId;
this._storage = storage;
this._summary = new RoomSummary(this._roomId, this._storage, storedSummary);
}
async applyInitialSync(roomResponse, membership) {
}
async applyIncrementalSync(roomResponse, membership) {
}
async loadFromStorage() {
}
}