Kaynağa Gözat

fix(types): 暂时恢复

qinlaiqiao 5 yıl önce
ebeveyn
işleme
1e67082824

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

@@ -2,6 +2,11 @@ import { ELockInfo } from './user';
 import { TaxType, IGLJCol } from './project';
 import { IFileRef, INumFileRef } from './base';
 
+export interface ICptItem {
+  ID: string;
+  name: string;
+  description: string;
+}
 export interface IProgramLib extends INumFileRef {
   displayName: string;
 }

+ 7 - 0
types/src/interface/user.ts

@@ -113,6 +113,13 @@ export interface IRecentUser extends IUser {
   recentDate: number;
 }
 
+export interface IBootResult {
+  compilation: ICompilation;
+  complete: boolean;
+}
+
 export interface ILoginResult {
   userID: string;
+  userInfo: IUser;
+  cptList: ICompilation;
 }