UNPKG
ue3
Version:
latest (1.0.1)
1.0.1
1.0.0
ue3 build your own vue for learning.
github.com/KesionX/ue3
KesionX/ue3
ue3
/
src
/
types
/
common.ts
10 lines
(8 loc)
•
252 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
import
{
VNode
}
from
"./vnode"
;
export
const
VTypeText
=
Symbol
();
export
const
VTypeComment
=
Symbol
();
export
const
Fragment
=
Symbol
();
export
interface
VHTMLElement
extends
HTMLElement
{
_vnode
:
VNode
|
null
;
_vei
:
Record
<
string
,
any
>; }