Преглед изворни кода

refactor(types): 通知中心

qinlaiqiao пре 4 година
родитељ
комит
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;
+}