Files
mb-grid-solutions.com/lib/services/notifications/notification-service.ts

10 lines
217 B
TypeScript

export interface NotificationMessage {
title: string;
message: string;
priority?: number; // 0-10, Gotify style
}
export interface NotificationService {
notify(message: NotificationMessage): Promise<void>;
}