-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathvdom.ml
37 lines (33 loc) · 943 Bytes
/
vdom.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
module Attr = struct
include Attr
module Hooks = Hooks
module Global_listeners = Global_listeners
end
module Attrs = Attr.Multi
module Effect = Effect
module Node = struct
include Node
module Map_children = Vdom_node_with_map_children
end
module Html_syntax = struct
module Html_syntax = struct
module Attr :
module type of Attr
with type t := Attr.t
and module Multi := Attr.Multi
and module Always_focus_hook := Attr.Always_focus_hook
and module Single_focus_hook := Attr.Single_focus_hook
and module No_op_hook := Attr.No_op_hook
and module Expert := Attr.Expert =
Attr
module Node :
module type of Node
with type t := Node.t
and module Element := Node.Element
and module Widget := Node.Widget
and module Aliases := Node.Aliases
and module Patch := Node.Patch
and module Expert := Node.Expert =
Node
end
end