Files
mb-grid-solutions.com/lib/services/notifications/notification-service.ts
2026-02-07 01:11:28 +01:00

10 lines
195 B
TypeScript

export interface NotificationOptions {
title: string;
message: string;
priority?: number;
}
export interface NotificationService {
notify(options: NotificationOptions): Promise<void>;
}