Start migrating OperationStore to TypeScript
This commit is contained in:
parent
c21b187683
commit
51d8e3cb66
3 changed files with 2 additions and 2 deletions
|
@ -32,7 +32,7 @@ import {OlmSessionStore} from "./stores/OlmSessionStore";
|
|||
import {InboundGroupSessionStore} from "./stores/InboundGroupSessionStore";
|
||||
import {OutboundGroupSessionStore} from "./stores/OutboundGroupSessionStore";
|
||||
import {GroupSessionDecryptionStore} from "./stores/GroupSessionDecryptionStore";
|
||||
import {OperationStore} from "./stores/OperationStore.js";
|
||||
import {OperationStore} from "./stores/OperationStore";
|
||||
import {AccountDataStore} from "./stores/AccountDataStore.js";
|
||||
|
||||
export class Transaction {
|
||||
|
|
|
@ -2,7 +2,7 @@ import {iterateCursor, reqAsPromise} from "./utils";
|
|||
import {RoomMember, EVENT_TYPE as MEMBER_EVENT_TYPE} from "../../room/members/RoomMember.js";
|
||||
import {RoomMemberStore} from "./stores/RoomMemberStore";
|
||||
import {SessionStore} from "./stores/SessionStore";
|
||||
import {encodeScopeTypeKey} from "./stores/OperationStore.js";
|
||||
import {encodeScopeTypeKey} from "./stores/OperationStore";
|
||||
|
||||
// FUNCTIONS SHOULD ONLY BE APPENDED!!
|
||||
// the index in the array is the database version
|
||||
|
|
Reference in a new issue