UNPKG

@vivaxy/wxml

Version:

🌇WXML parser and serializer.

14 lines (13 loc) • 281 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); class BaseNode { constructor(type) { this.type = type; this.parentNode = null; } toJSON() { throw new Error('To be implemented'); } } exports.default = BaseNode; ;