UNPKG
boa-vdom
Version:
latest (0.2.0)
0.2.0
A virtual dom library for b-o-a
github.com/bouzuya/boa-vdom
bouzuya/boa-vdom
boa-vdom
/
lib
/
vdom.d.ts
5 lines
(4 loc)
•
138 B
TypeScript
View Raw
1
2
3
4
5
export
declare
type
VDOM
=
any
;
export
declare
type
Patches
=
any
;
declare
const
diff
:
(
current
:
any
,
next
:
any
) =>
any
;
export
{ diff };