From d0359e22ccad96d738409b4dde649b93461ef4d8 Mon Sep 17 00:00:00 2001 From: Brendan Chen Date: Sun, 2 Feb 2025 12:43:52 -0800 Subject: [PATCH] add NotificationService class with stubs, and test file --- src/services/NotificationService.ts | 17 +++++++++++++++++ test/services/NotificationServiceTests.test.ts | 0 2 files changed, 17 insertions(+) create mode 100644 src/services/NotificationService.ts create mode 100644 test/services/NotificationServiceTests.test.ts diff --git a/src/services/NotificationService.ts b/src/services/NotificationService.ts new file mode 100644 index 0000000..720161e --- /dev/null +++ b/src/services/NotificationService.ts @@ -0,0 +1,17 @@ +class NotificationService { + public startListeningForNotification() { + + } + + public stopListeningForNotification() { + + } + + public stopListeningForAllNotifications() { + + } + + public startReloadingNotificationTokens() { + + } +} diff --git a/test/services/NotificationServiceTests.test.ts b/test/services/NotificationServiceTests.test.ts new file mode 100644 index 0000000..e69de29