youzanyun-devtool-worker
Version:
25 lines (24 loc) • 745 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const tslib_1 = require("tslib");
const spring4js_nodejs_1 = require("spring4js-nodejs");
let BuiltInAppService = class BuiltInAppService {
async start() { }
async getMenu({ projectId, workbenchId, }) {
const menuList = [
{
key: "built-app",
title: "嵌入式容器应用",
param: {
contentType: "webview",
url: "/html/built-in-app",
},
},
];
return menuList;
}
};
BuiltInAppService = tslib_1.__decorate([
(0, spring4js_nodejs_1.Service)()
], BuiltInAppService);
exports.default = BuiltInAppService;