hydrogen-web/src/matrix/storage/idb/stores/RoomStateStore.js

17 lines
272 B
JavaScript
Raw Normal View History

2019-02-11 01:55:29 +05:30
export default class RoomStateStore {
constructor(idbStore) {
this._roomStateStore = idbStore;
}
async getEvents(type) {
}
async getEventsForKey(type, stateKey) {
}
async setStateEvent(roomId, event) {
return this._roomStateStore.put({roomId, event});
}
}