alerts.ts 203 B

1234567891011
  1. export interface AppNotification {
  2. id: number;
  3. severity: string;
  4. icon: string;
  5. title: string;
  6. text: string;
  7. }
  8. export interface AppNotificationsState {
  9. appNotifications: AppNotification[];
  10. }