add arguments to scheduling methods

This commit is contained in:
2025-02-02 13:51:48 -08:00
parent c4771adef8
commit 483307f225

View File

@@ -9,11 +9,11 @@ interface ScheduledNotificationData {
export class NotificationService {
constructor(private repository: GetterRepository) {}
public async scheduleNotification() {
public async scheduleNotification({ deviceId, shuttleId, stopId }: ScheduledNotificationData) {
}
public async cancelNotification() {
public async cancelNotification({ deviceId, shuttleId, stopId }: ScheduledNotificationData) {
}