add ScheduledNotificationData and make schedule functions async

This commit is contained in:
2025-02-02 13:51:05 -08:00
parent 88ab399c11
commit c4771adef8

View File

@@ -1,13 +1,19 @@
import { GetterRepository } from "../repositories/GetterRepository";
interface ScheduledNotificationData {
deviceId: string;
shuttleId: string;
stopId: string;
}
export class NotificationService {
constructor(private repository: GetterRepository) {}
public scheduleNotification() {
public async scheduleNotification() {
}
public cancelNotification() {
public async cancelNotification() {
}