Browse Source

refactor(types): 通知中心

qinlaiqiao 5 năm trước cách đây
mục cha
commit
82fe39eced
1 tập tin đã thay đổi với 6 bổ sung0 xóa
  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;
+}