mirror of
https://github.com/brendan-ch/project-inter-server.git
synced 2026-04-17 07:50:31 +00:00
22 lines
356 B
TypeScript
22 lines
356 B
TypeScript
import { GetterRepository } from "../repositories/GetterRepository";
|
|
|
|
class NotificationService {
|
|
constructor(private repository: GetterRepository) {}
|
|
|
|
public startListeningForNotification() {
|
|
|
|
}
|
|
|
|
public stopListeningForNotification() {
|
|
|
|
}
|
|
|
|
public stopListeningForAllNotifications() {
|
|
|
|
}
|
|
|
|
public startReloadingNotificationTokens() {
|
|
|
|
}
|
|
}
|