Remove unused sessionStorage layer (#8834)

* Remove unused sessionStorage layer

* Update global.d.ts

* Fix tests
This commit is contained in:
Michael Telatynski
2022-06-14 21:29:24 +01:00
committed by GitHub
parent 7da8c51c6b
commit d81e2cea14
5 changed files with 21 additions and 78 deletions
-2
View File
@@ -26,7 +26,6 @@ import type {
Visibility,
RoomMemberEvent,
} from "matrix-js-sdk/src/matrix";
import type { WebStorageSessionStore } from "matrix-js-sdk/src/store/session/webstorage";
import type { MatrixDispatcher } from "../src/dispatcher/dispatcher";
import type PerformanceMonitor from "../src/performance";
@@ -49,7 +48,6 @@ declare global {
MatrixScheduler: typeof MatrixScheduler;
MemoryStore: typeof MemoryStore;
MemoryCryptoStore: typeof MemoryCryptoStore;
WebStorageSessionStore: typeof WebStorageSessionStore;
Visibility: typeof Visibility;
Preset: typeof Preset;
};