12345678910111213141516171819 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.BaseComParse = void 0;
- class BaseComParse {
- constructor() {
- this.comName = 'component';
- }
- /**
- * 解析预制件数组里的单个项目
- * @param json 预制件数组里的一个项目
- * @param uuidSeekedMap 已经找到了的uuid的名字
- * @param fatherJson 整个预制件的Json
- * @returns 返回丢失了uuid的属性的名字
- */
- async parse(json, uuidSeekedMap, fatherJson) {
- return [];
- }
- }
- exports.BaseComParse = BaseComParse;
|