summaryrefslogtreecommitdiff
path: root/packages/backend/src/core/NotificationService.ts
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-09-21 05:33:11 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-09-21 05:33:11 +0900
commit01d4d55e78fd977b9d44a68a2504e6091d346b7a (patch)
tree09b2b1e4c6857ba65b3930ba396c7c68205a8a08 /packages/backend/src/core/NotificationService.ts
parentadd test for metaService (diff)
downloadsharkey-01d4d55e78fd977b9d44a68a2504e6091d346b7a.tar.gz
sharkey-01d4d55e78fd977b9d44a68a2504e6091d346b7a.tar.bz2
sharkey-01d4d55e78fd977b9d44a68a2504e6091d346b7a.zip
fix import type
Diffstat (limited to 'packages/backend/src/core/NotificationService.ts')
-rw-r--r--packages/backend/src/core/NotificationService.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/backend/src/core/NotificationService.ts b/packages/backend/src/core/NotificationService.ts
index ca9e60889d..2606ca4de0 100644
--- a/packages/backend/src/core/NotificationService.ts
+++ b/packages/backend/src/core/NotificationService.ts
@@ -1,7 +1,7 @@
import { Inject, Injectable } from '@nestjs/common';
import { In } from 'typeorm';
import { DI } from '@/di-symbols.js';
-import { NotificationsRepository } from '@/models/index.js';
+import type { NotificationsRepository } from '@/models/index.js';
import type { UsersRepository } from '@/models/index.js';
import type { User } from '@/models/entities/User.js';
import type { Notification } from '@/models/entities/Notification.js';