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

+ 2 - 0
types/src/interface/message.ts

@@ -7,6 +7,7 @@ export enum SocketEvent {
 
 export enum SocketName {
   INVITE = 'invite',
+  REMOVE_FROM_ENTERPRISE = 'removeFromEnterprise',
 }
 
 export interface ISocketData {
@@ -22,6 +23,7 @@ export interface ISocketData {
 
 export enum MessageName {
   INVITE = 'invite',
+  REMOVE_FROM_ENTERPRISE = 'removeFromEnterprise',
 }
 
 export interface IMessage {

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

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