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 5050* ` ofElement ` was incorrectly returning ` Dom.htmlElement ` type instead of the enclosing element type (#60 )
5151* ` Dom.CssStyleDeclaration.setPropertyValue ` was emitting the wrong function name (#114 )
5252* ` Url.toJSON() ` was emitting the wrong function name (#121 )
53+ * The ` options ` signature in ` Webapi.Dom.CustomEvent ` 's ` makeWithOption ` (#122 )
5354
5455### Miscellaneous
5556* Converted project to rescript syntax (#18 )
Original file line number Diff line number Diff line change @@ -19,8 +19,9 @@ module Make = (
1919 include Webapi__Dom__Event .Impl ({
2020 type t = t
2121 })
22+ type options = {detail : Detail .t }
2223
2324 @new external make : string => t = "CustomEvent"
24- @new external makeWithOptions : (string , Detail . t ) => t = "CustomEvent"
25+ @new external makeWithOptions : (string , options ) => t = "CustomEvent"
2526 @get external detail : t => Detail .t = "detail"
2627}
You can’t perform that action at this time.
0 commit comments