aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorFuwn <[email protected]>2024-07-25 00:28:00 -0700
committerFuwn <[email protected]>2024-07-25 00:28:00 -0700
commit52c2447c2a143e8786bfc5831b9a6a0b99167efd (patch)
treef838974667fe9bb0e67c7ae83cac10adfcc90fa2 /src
parentdeps(web-push): add types (diff)
downloaddue.moe-52c2447c2a143e8786bfc5831b9a6a0b99167efd.tar.xz
due.moe-52c2447c2a143e8786bfc5831b9a6a0b99167efd.zip
fix(service-worker): fix import paths
Diffstat (limited to 'src')
-rw-r--r--src/service-worker.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service-worker.ts b/src/service-worker.ts
index 082a25de..6ce56da5 100644
--- a/src/service-worker.ts
+++ b/src/service-worker.ts
@@ -4,8 +4,8 @@
/// <reference lib="webworker" />
import { build, files, version } from '$service-worker';
-import { database } from './lib/Database/user';
-import { type Notification, notifications } from './lib/Data/AniList/notifications';
+import { database } from './lib/Database/IndexedDB/user';
+import { notifications } from './lib/Data/AniList/notifications';
const sw = /** @type {ServiceWorkerGlobalScope} */ /** @type {unknown} */ self;