improve typing in the idb worker
This commit is contained in:
parent
4084a11847
commit
0e38eee080
1 changed files with 4 additions and 2 deletions
|
@ -16,6 +16,8 @@ limitations under the License.
|
||||||
|
|
||||||
import { IndexedDBStoreWorker } from "matrix-js-sdk/src/indexeddb-worker";
|
import { IndexedDBStoreWorker } from "matrix-js-sdk/src/indexeddb-worker";
|
||||||
|
|
||||||
const remoteWorker = new IndexedDBStoreWorker(postMessage as InstanceType<typeof Worker>["postMessage"]);
|
const ctx: Worker = self as any;
|
||||||
|
|
||||||
global.onmessage = remoteWorker.onMessage;
|
const remoteWorker = new IndexedDBStoreWorker(ctx.postMessage);
|
||||||
|
|
||||||
|
ctx.onmessage = remoteWorker.onMessage;
|
||||||
|
|
Loading…
Reference in a new issue