File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed
Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change 4242* CustomEvent Functor to make custom events with strongly typed ` detail ` fields (#93 )
4343* ` Webapi.Url.createObjectURLFromBlob ` binding that takes a ` Webapi.Blob.t ` (#106 )
4444* ` returnValue ` setter for ` BeforeUnloadEvent ` (#110 )
45+ * ` Webapi.FormData.makeWithHtmlForm ` binding that takes a ` Webapi.Dom.HtmlFormElement.t ` (#108 )
46+
4547
4648### Fixed
4749* ` ofElement ` was incorrectly returning ` Dom.htmlElement ` type instead of the enclosing element type (#60 )
Original file line number Diff line number Diff line change @@ -12,6 +12,8 @@ module EntryValue = {
1212type t
1313
1414@new external make : unit => t = "FormData"
15+ @new external makeWithHtmlForm : Webapi__Dom__HtmlFormElement .t => t = "FormData"
16+
1517@send external append : (t , string , string ) => unit = "append"
1618@send external delete : (t , string ) => unit = "delete"
1719@send external get : (t , string ) => option <EntryValue .t > = "get"
You can’t perform that action at this time.
0 commit comments