UNPKG

337 BJavaScriptView Raw
1"use strict";
2Object.defineProperty(exports, "__esModule", { value: true });
3/**
4 * 项目类型
5 *
6 * @export
7 * @enum {number}
8 */
9var ProjectType;
10(function (ProjectType) {
11 ProjectType["Component"] = "component";
12 ProjectType["Application"] = "application";
13})(ProjectType = exports.ProjectType || (exports.ProjectType = {}));