UNPKG

@icebreakers/wxml

Version:

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

8 lines (7 loc) 217 B
import NODE_TYPES from '../types/node-types'; export default abstract class BaseNode { type: NODE_TYPES; parentNode: BaseNode | null; constructor(type: NODE_TYPES); abstract toJSON(): Object; }