File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 50
50
* ` ofElement ` was incorrectly returning ` Dom.htmlElement ` type instead of the enclosing element type (#60 )
51
51
* ` Dom.CssStyleDeclaration.setPropertyValue ` was emitting the wrong function name (#114 )
52
52
* ` Url.toJSON() ` was emitting the wrong function name (#121 )
53
+ * The ` options ` signature in ` Webapi.Dom.CustomEvent ` 's ` makeWithOption ` (#122 )
53
54
54
55
### Miscellaneous
55
56
* Converted project to rescript syntax (#18 )
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ module Make = (
19
19
include Webapi__Dom__Event .Impl ({
20
20
type t = t
21
21
})
22
+ type options = {detail : Detail .t }
22
23
23
24
@new external make : string => t = "CustomEvent"
24
- @new external makeWithOptions : (string , Detail . t ) => t = "CustomEvent"
25
+ @new external makeWithOptions : (string , options ) => t = "CustomEvent"
25
26
@get external detail : t => Detail .t = "detail"
26
27
}
You can’t perform that action at this time.
0 commit comments