Browse Source

refactor(types): 通知中心

qinlaiqiao 4 years ago
parent
commit
82fe39eced
1 changed files with 6 additions and 0 deletions
  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;
+}