Comparing version 0.8.0 to 0.8.1
{ | ||
"name": "bs-webapi", | ||
"version": "0.8.0", | ||
"version": "0.8.1", | ||
"description": "Reason + BuckleScript bindings to DOM", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -37,6 +37,6 @@ # bs-webapi | ||
```ml | ||
type 'a _element | ||
type 'a element_like = 'a _element node_like | ||
type element = _baseClass element_like | ||
```reason | ||
type _element('a); | ||
type element_like('a) = node_like(_element('a)); | ||
type element = element_like(_baseClass); | ||
``` | ||
@@ -56,9 +56,9 @@ | ||
```reason | ||
include EventTargetRe.Impl { type nonrec t = t }; | ||
include NodeRe.Impl { type nonrec t = t }; | ||
include ParentNodeRe.Impl { type nonrec t = t }; | ||
include NonDocumentTypeChildNodeRe.Impl { type nonrec t = t }; | ||
include ChildNodeRe.Impl { type nonrec t = t }; | ||
include SlotableRe.Impl { type nonrec t = t }; | ||
include Impl { type nonrec t = t }; | ||
include EventTargetRe.Impl({ type nonrec t = t }); | ||
include NodeRe.Impl({ type nonrec t = t }); | ||
include ParentNodeRe.Impl({ type nonrec t = t }); | ||
include NonDocumentTypeChildNodeRe.Impl({ type nonrec t = t }); | ||
include ChildNodeRe.Impl({ type nonrec t = t }); | ||
include SlotableRe.Impl({ type nonrec t = t }); | ||
include Impl({ type nonrec t = t }); | ||
``` | ||
@@ -65,0 +65,0 @@ |
140609