UNPKG

wxml

Version:

wxml parser and serializer.

12 lines (11 loc) 261 B
/** * @since 20180808 10:56 * @author vivaxy */ 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; }