Browse Source

feat(types): 添加最近联系人类型

vian 5 năm trước cách đây
mục cha
commit
92864e5361
1 tập tin đã thay đổi với 5 bổ sung0 xóa
  1. 5 0
      types/src/interface/User.ts

+ 5 - 0
types/src/interface/User.ts

@@ -60,3 +60,8 @@ export interface IUser {
   contacts?: IContact[];
   contacts?: IContact[];
   [key: string]: any;
   [key: string]: any;
 }
 }
+
+// 最近联系人
+export interface IRecentUser extends IUser {
+  recentDate: number;
+}