Appease the linter

This commit is contained in:
Johannes Marbach 2023-11-13 19:54:04 +01:00
parent 5855930221
commit 99ad1781a5
6 changed files with 12 additions and 11 deletions

View file

@ -23,6 +23,7 @@ import {
IndexedDBStore, IndexedDBStore,
LocalStorageCryptoStore, LocalStorageCryptoStore,
} from "matrix-js-sdk/src/matrix"; } from "matrix-js-sdk/src/matrix";
import indexeddbWorkerFactory from "../workers/indexeddbWorkerFactory"; import indexeddbWorkerFactory from "../workers/indexeddbWorkerFactory";
const localStorage = window.localStorage; const localStorage = window.localStorage;

View file

@ -15,5 +15,5 @@ limitations under the License.
*/ */
export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker { export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker {
return new Worker(new URL("../workers/indexeddb.worker.ts", import.meta.url), options) return new Worker(new URL("../workers/indexeddb.worker.ts", import.meta.url), options);
} }

View file

@ -15,5 +15,5 @@ limitations under the License.
*/ */
export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker { export default function blurhashWorkerFactory(options?: WorkerOptions | undefined): Worker {
return new Worker(new URL("../workers/playback.worker.ts", import.meta.url), options) return new Worker(new URL("../workers/playback.worker.ts", import.meta.url), options);
} }