UNPKG

@icebreakers/wxml

Version:

wxml parser and serializer. fork form wxml and improve. thanks to vivaxy and roadupcc

12 lines (11 loc) 249 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class BaseNode { type; parentNode; constructor(type) { this.type = type; this.parentNode = null; } } exports.default = BaseNode;