UNPKG

wxml

Version:

wxml parser and serializer.

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