12345678910111213141516171819 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.BaseComParse = void 0;
- class BaseComParse {
- constructor() {
- this.comName = 'component';
- }
-
- async parse(json, uuidSeekedMap, fatherJson) {
- return [];
- }
- }
- exports.BaseComParse = BaseComParse;
|