feat: 增加已安装应用操作

This commit is contained in:
zhengkunwang223
2022-09-26 18:20:21 +08:00
committed by zhengkunwang223
parent f7263934f9
commit 4830839c91
11 changed files with 147 additions and 8 deletions

View File

@@ -62,6 +62,7 @@ export namespace App {
}
export interface AppInstalled extends CommonModel {
name: string;
containerName: string;
version: string;
appId: string;
@@ -75,4 +76,9 @@ export namespace App {
ready: number;
icon: string;
}
export interface AppInstalledOp {
installId: number;
operate: string;
}
}