interface.ts 156 B

123456789
  1. interface NotificationItem {
  2. avatar: string;
  3. date: string;
  4. isRead?: boolean;
  5. message: string;
  6. title: string;
  7. }
  8. export type { NotificationItem };