UNPKG

company-cafeteria-shared-demo

Version:

Package partagé pour l'écosystème Cafétéria Entreprise

12 lines 319 B
import { NotificationType } from '../constants/notificationTypes'; export interface Notification { id: string; userId: string; type: NotificationType; title: string; message: string; data?: Record<string, any>; read: boolean; createdAt: Date; } //# sourceMappingURL=notification.d.ts.map