Explorar el Código

refactor(types): 通知中心

qinlaiqiao hace 5 años
padre
commit
82fe39eced
Se han modificado 1 ficheros con 6 adiciones y 0 borrados
  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;
+}