UNPKG

@vivaxy/wxml

Version:

🌇WXML parser and serializer.

15 lines (14 loc) • 313 B
/** * @since 20180808 11:15 * @author vivaxy */ import BaseNode from './base'; import NODE_TYPES from '../types/node-types'; export default class TextNode extends BaseNode { textContent: string; constructor(text: string); toJSON(): { type: NODE_TYPES; textContent: string; }; }