UNPKG
wxml
Version:
latest (2.2.2)
2.2.2
2.2.1
2.2.0
2.0.1
2.0.0
wxml parser and serializer.
github.com/oft/wxml
oft/wxml
wxml
/
lib
/
nodes
/
base.d.ts
12 lines
(11 loc)
•
261 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
/** *
@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
; }