qinlaiqiao 4 лет назад
Родитель
Сommit
82fe39eced
1 измененных файлов с 6 добавлено и 0 удалено
  1. 6 0
      types/src/interface/notification.ts

+ 6 - 0
types/src/interface/notification.ts

@@ -0,0 +1,6 @@
+export interface INotificationListItem {
+  ID: string;
+  status: 'unread' | 'already';
+  title: string;
+  removable: boolean;
+}